Testing Sod tube with SPH#

CI test for Sod tube with SPH

 8 import json
 9 import os
10
11 import matplotlib.pyplot as plt
12 import numpy as np
13 from matplotlib.animation import PillowWriter
14 from shamrock.utils.analysis import AnalysisHelper
15 from shamrock.utils.plot import show_image_sequence
16 from shamrock.utils.SimulationRunner import SimulationRunner, callback, simulation_setup
17
18 import shamrock
19
20 # If we use the shamrock executable to run this script instead of the python interpreter,
21 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
22 if not shamrock.sys.is_initialized():
23     shamrock.change_loglevel(1)
24     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
28 gamma = 1.4
29
30 rho_g = 1
31 rho_d = 0.125
32
33 fact = (rho_g / rho_d) ** (1.0 / 3.0)
34
35 P_g = 1
36 P_d = 0.1
37
38 u_g = P_g / ((gamma - 1) * rho_g)
39 u_d = P_d / ((gamma - 1) * rho_d)
40
41 resol = int(os.environ.get("RESOL", "128"))
42
43 sim_folder = f"_to_trash/sod_{resol}/"
44 dump_folder = sim_folder + "dump/"
48 ctx = shamrock.Context()
49 ctx.pdata_layout_new()
50
51 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
52
53 l2_error_analysis = AnalysisHelper(
54     analysis_folder=sim_folder,
55     analysis_prefix="l2_error",
56 )
 62 class Simulation(SimulationRunner):
 63     # Use the global vars defined at the top of the file
 64     t_end = 0.245
 65     dump_prefix = dump_folder + "dump_"
 66
 67     @callback(at_tsim=(0.245 * np.linspace(0.0, 1.0, 10)).tolist())  # Do the analysis every dt_stop
 68     def analysis_plots(self, ianalysis):
 69         dic = ctx.collect_data()
 70         pmass = model.get_particle_mass()
 71
 72         x = np.array(dic["xyz"][:, 0]) + 0.5
 73         vx = dic["vxyz"][:, 0]
 74         uint = dic["uint"][:]
 75
 76         hpart = dic["hpart"]
 77         alpha = dic["alpha_AV"]
 78
 79         rho = pmass * (model.get_hfact() / hpart) ** 3
 80         P = (gamma - 1) * rho * uint
 81
 82         sod = shamrock.phys.SodTube(gamma=gamma, rho_1=1, P_1=1, rho_5=0.125, P_5=0.1)
 83         sodanalysis = model.make_analysis_sodtube(
 84             sod, (1, 0, 0), self.model.get_time(), 0.0, -0.5, 0.5
 85         )
 86         l2_rho, l2_v, l2_P = sodanalysis.compute_L2_dist()
 87         l2_error_analysis.analysis_save(
 88             ianalysis, {"l2_rho": l2_rho, "l2_v": l2_v, "l2_P": l2_P, "time": self.model.get_time()}
 89         )
 90
 91         plt.plot(x, rho, ".", label="rho")
 92         plt.plot(x, vx, ".", label="v")
 93         plt.plot(x, P, ".", label="P")
 94         plt.plot(x, alpha, ".", label="alpha")
 95
 96         x = np.linspace(-0.5, 0.5, 1000)
 97
 98         rho = []
 99         P = []
100         vx = []
101
102         for i in range(len(x)):
103             x_ = x[i]
104
105             _rho, _vx, _P = sod.get_value(self.model.get_time(), x_)
106             rho.append(_rho)
107             vx.append(_vx)
108             P.append(_P)
109
110         x += 0.5
111         plt.plot(x, rho, color="black", label="analytic")
112         plt.plot(x, vx, color="black")
113         plt.plot(x, P, color="black")
114
115         plt.legend()
116         plt.grid()
117         plt.ylim(0, 1.1)
118         plt.xlim(0, 1)
119         plt.xlabel("x")
120         plt.title(f"t={self.model.get_time():.3f}")
121         plt.savefig(dump_folder + f"sod_{ianalysis:04d}.png")
122         plt.close()
123
124     @callback(walltime_interval=30.0)  # Checkpoint the simulation every 30 seconds
125     def checkpoint(self, icheckpoint):
126         self.do_checkpoint(icheckpoint, purge_old_dumps=True, keep_first=1, keep_last=3)
127
128     @simulation_setup
129     def setup(self):
130
131         cfg = model.gen_default_config()
132         cfg.set_artif_viscosity_VaryingCD10(
133             alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
134         )
135         cfg.set_boundary_periodic()
136         cfg.set_eos_adiabatic(gamma)
137         cfg.print_status()
138         model.set_solver_config(cfg)
139
140         model.init_scheduler(int(1e8), 1)
141
142         (xs, ys, zs) = model.get_box_dim_fcc_3d(1, resol, 24, 24)
143         dr = 1 / xs
144         (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, resol, 24, 24)
145
146         model.resize_simulation_box((-xs, -ys / 2, -zs / 2), (xs, ys / 2, zs / 2))
147
148         V_g_min = (-xs, -ys / 2, -zs / 2)
149         V_g_max = (0, ys / 2, zs / 2)
150         V_d_min = (0, -ys / 2, -zs / 2)
151         V_d_max = (xs, ys / 2, zs / 2)
152
153         setup = model.get_setup()
154         gen1 = setup.make_generator_lattice_hcp(dr, V_g_min, V_g_max)
155         gen2 = setup.make_generator_lattice_hcp(dr * fact, V_d_min, V_d_max)
156         comb = setup.make_combiner_add(gen1, gen2)
157
158         setup.apply_setup(comb)
159
160         model.set_value_in_a_box("uint", "f64", u_g, V_g_min, V_g_max)
161         model.set_value_in_a_box("uint", "f64", u_d, V_d_min, V_d_max)
162
163         vol_b = xs * ys * zs
164
165         totmass = (rho_d * vol_b) + (rho_g * vol_b)
166
167         print("Total mass :", totmass)
168
169         pmass = model.total_mass_to_part_mass(totmass)
170         model.set_particle_mass(pmass)
171         print("Current part mass :", pmass)
172
173         model.set_cfl_cour(0.1)
174         model.set_cfl_force(0.1)
175
176         model.timestep()
177
178
179 Simulation(model).run()
[Simulation] Running setup function: setup

----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "type": "none"
            },
            "mode": {
                "type": "none"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "eos_type": "adiabatic",
            "gamma": 1.4
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": false,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "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 = 82944 ( 8.3e+04 ) Ntotal = 82944 ( 8.3e+04 rank min = 7.9e+06 max = 8.3e+04) rate = 8.294400e+04 N.s^-1
SPH setup: the generation step took : 0.016894253 s
SPH setup: final particle count = 82944 beginning injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.22 us   (82.7%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (0.2%)
   patch tree reduce : 1.15 us    (0.1%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.1%)
   LB compute        : 832.02 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 9.81 us    (1.2%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected        82944 / 82944 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.015100586000000001 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 |   6.0% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.058785787000000006 s
Total mass : 0.027966625623100757
Current part mass : 3.371747880871523e-07
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 375.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.8548779899691358
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.00859375 unconverged cnt = 82944
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9294584297839507
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.009453125000000001 unconverged cnt = 82872
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9549213927469137
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010398437500000003 unconverged cnt = 82800
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.157998167438272
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.011438281250000005 unconverged cnt = 82800
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.200605227623457
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.012582109375000006 unconverged cnt = 82728
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.4560426311728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013840320312500008 unconverged cnt = 82512
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013920379857667285 unconverged cnt = 576
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (-4.13989222504511e-18,-2.8709421870543954e-17,-1.3123560990272466e-17)
    sum e = 0.0683628626342463
    sum de = -1.1926223897340549e-18
Info: cfl dt = 5.882433273178804e-06 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    | 2.2667e+04 | 82944 |      1 | 3.659e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

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

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

Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = 0.00s)        [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 15.117934166000001 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 0):
   -> t = 0.0 >= 0.0
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000000.npy
--------------------------------
[Simulation] Triggering callback "checkpoint" (counter = 0):
   -> walltime = 15.118018924000001 >= 0.0
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000000.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.42 us   (73.0%)
Info: dump to _to_trash/sod_128/dump/dump_0000000.sham                      [Shamrock Dump][rank=0]
              - took 5.37 ms, bandwidth = 2.72 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.0 -> 0.02722222222222222
[Simulation] Advancing callback "checkpoint"
   -> walltime = 15.118018924000001 -> 45.118018924

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 45.12s)       [SPH][rank=0]
---------------- t = 0, dt = 5.882433273178804e-06 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 421.00 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.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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.026883480581841e-23,-1.6757528834525555e-22,-7.75422805254566e-23)
    sum a = (4.829874262552629e-18,-3.8767167846971907e-17,4.5359470301037834e-18)
    sum e = 0.06836286275039181
    sum de = -4.4994390158148434e-18
Info: cfl dt = 0.0001996538784146044 cfl multiplier : 0.34                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1193e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.018176443802558655 (tsim/hr)                          [sph::Model][rank=0]
Info: next walltime check in 7.00s (niter = 6) global walltime = 16.94s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 5.882433273178804e-06, dt = 0.0001996538784146044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 416.86 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.50 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2273183176919133e-21,-7.953538467430314e-21,8.839426819056906e-22)
    sum a = (9.180594332391702e-18,-4.776897777120736e-17,-2.4797759439067484e-17)
    sum e = 0.06836299641716373
    sum de = -2.927345865710862e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.019652548236075443
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8810545456137586e-21,-8.845445510416253e-21,-2.061166580750639e-21)
    sum a = (4.369886237547617e-18,-4.6392008409896786e-17,-2.8042104661867424e-17)
    sum e = 0.06836286263456483
    sum de = -8.212831456577696e-18
Info: cfl dt = 0.000154985525758932 cfl multiplier : 0.28                      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1669e+04 | 82944 |      1 | 1.605e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.44774304446762103 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.0002055363116877832, dt = 0.000154985525758932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 356.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5735820897700677e-21,-1.5905907124819824e-20,-6.6853290849338936e-21)
    sum a = (2.3191062927336035e-18,-4.280104720687914e-17,-7.390034490899581e-18)
    sum e = 0.06836294303131579
    sum de = 1.81603863891322e-18
Info: cfl dt = 0.00027556773537005635 cfl multiplier : 0.52                    [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6670e+04 | 82944 |      1 | 1.082e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5157466688385713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0003605218374467152, dt = 0.00027556773537005635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.6%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 392.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
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: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.117731343632108e-21,-2.746743221060165e-20,-7.117203929473583e-21)
    sum a = (-1.3416317395979524e-18,-4.336974333935604e-17,-2.9526104954719243e-17)
    sum e = 0.06836311502673645
    sum de = -2.5478751053409354e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.015385858047411254
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.60980190032168e-22,-2.744988505998958e-20,-1.0198914708149811e-20)
    sum a = (9.77474553135651e-18,-4.262166385598201e-17,-2.893709016166263e-17)
    sum e = 0.06836286260783947
    sum de = 3.198396408832238e-18
Info: cfl dt = 0.0001675526044477878 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    | 5.3213e+04 | 82944 |      1 | 1.559e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.63645219715526 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.0006360895728167715, dt = 0.0001675526044477878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 331.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.984141113379145e-21,-3.4466990589755835e-20,-1.495617502542407e-20)
    sum a = (3.8332335417084355e-20,-4.517974830233149e-17,-1.0112050210649692e-17)
    sum e = 0.06836295559253482
    sum de = -4.336808689942018e-19
Info: cfl dt = 0.0002647357709509853 cfl multiplier : 0.56                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6478e+04 | 82944 |      1 | 1.085e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5561684990238459 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0008036421772645593, dt = 0.0002647357709509853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 367.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.240748982804501e-22,-4.663652444424584e-20,-1.6030014666200138e-20)
    sum a = (-2.4916018021104833e-19,-3.7565988180113115e-17,-2.3471580032901596e-17)
    sum e = 0.06836309115577714
    sum de = -1.3552527156068805e-19
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012073908811228155
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3583370422620258e-21,-4.556556335188925e-20,-1.776264086771778e-20)
    sum a = (9.008098823014823e-18,-4.033699677084969e-17,-2.4978877131932518e-17)
    sum e = 0.06836286298625213
    sum de = 7.182839392716467e-18
Info: cfl dt = 0.00015706235735863557 cfl multiplier : 0.35333333333333333     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3287e+04 | 82944 |      1 | 1.557e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6122768526171901 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0010683779482155446, dt = 0.00015706235735863557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 391.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.1%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2652665401342297e-20,-5.229811258922979e-20,-2.1951071995637642e-20)
    sum a = (-1.0733053916783619e-18,-4.453947851231801e-17,-1.5055797219473587e-17)
    sum e = 0.06836294298000328
    sum de = 6.532318089225164e-18
Info: cfl dt = 0.00024427683950683555 cfl multiplier : 0.5688888888888889      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2920e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4970892888966429 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.94s (niter = 3) global walltime = 24.97s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.0012254403055741803, dt = 0.00024427683950683555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 330.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.513502307199881e-21,-6.351308145042326e-20,-2.4799445845893558e-20)
    sum a = (3.8332335417084353e-19,-2.843241085288143e-17,4.881978732156404e-18)
    sum e = 0.06836305236808593
    sum de = -2.8189256484623115e-18
Info: cfl dt = 0.000290772319267989 cfl multiplier : 0.7125925925925927        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4964e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7947900850908189 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.001469717145081016, dt = 0.000290772319267989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 340.57 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.171310719907878e-21,-6.972594257713637e-20,-2.097587746653939e-20)
    sum a = (7.283143729246027e-19,-3.030171114720518e-17,1.46340085883545e-17)
    sum e = 0.06836312406502366
    sum de = 5.1228552649940085e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01287850806816842
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3401343827457226e-20,-7.006401767892888e-20,-1.948275012693623e-20)
    sum a = (-1.4566287458492054e-18,-2.821768988027167e-17,1.760232948787855e-17)
    sum e = 0.06836286248094786
    sum de = 3.1170812458958252e-18
Info: cfl dt = 0.00015598349800411296 cfl multiplier : 0.4041975308641976      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3052e+04 | 82944 |      1 | 1.563e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6695315668164523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.001760489464349005, dt = 0.00015598349800411296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.6%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 379.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
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: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.957423067328553e-21,-7.445606947712967e-20,-1.6265806195082494e-20)
    sum a = (7.283143729246027e-19,-4.6665425771113957e-17,-2.769222550933079e-17)
    sum e = 0.06836293775030984
    sum de = 4.526544070126981e-18
Info: cfl dt = 0.00022608962441943102 cfl multiplier : 0.6027983539094651      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4913e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5071701392341479 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.89s (niter = 3) global walltime = 28.75s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.001916472962353118, dt = 0.00022608962441943102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 343.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.160594844652725e-21,-8.631560367080646e-20,-2.61113076376131e-20)
    sum a = (4.331553902130532e-18,-4.284716579792782e-17,-8.013688905050612e-18)
    sum e = 0.06836301535744418
    sum de = 2.6834003769016235e-18
Info: cfl dt = 0.0002651517790852119 cfl multiplier : 0.7351989026063102       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5767e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7434997256530853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.002142562586772549, dt = 0.0002651517790852119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.5%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 381.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1379912076946917e-20,-9.704510136506604e-20,-2.6086420491145565e-20)
    sum a = (-1.9166167708542177e-19,-3.6106065249189e-17,-2.3540353760059653e-17)
    sum e = 0.06836306534432518
    sum de = -7.128629284092192e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010194483161240098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.545506648790758e-21,-9.631513989960398e-20,-2.819226775186778e-20)
    sum a = (6.669826362572678e-18,-3.799722695355531e-17,-2.5004567351193553e-17)
    sum e = 0.06836286273098938
    sum de = -1.2739375526704677e-18
Info: cfl dt = 0.00014233888667671118 cfl multiplier : 0.4117329675354367      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2393e+04 | 82944 |      1 | 1.583e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6029549317696477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0024077143658577612, dt = 0.00014233888667671118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 388.16 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7326762553194903e-20,-1.0190683189464986e-19,-3.182527715312739e-20)
    sum a = (4.024895218793857e-18,-4.5858050956391617e-17,-9.988234433367488e-18)
    sum e = 0.06836292115130443
    sum de = -1.1384122811097797e-17
Info: cfl dt = 0.0002055864066789899 cfl multiplier : 0.6078219783569577       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5873e+04 | 82944 |      1 | 1.093e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4687345566484255 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.58s (niter = 2) global walltime = 32.52s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.0025500532525344725, dt = 0.0002055864066789899 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 352.07 us  (86.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.064295251530923e-21,-1.1171802870687784e-19,-3.285104702447577e-20)
    sum a = (5.0598682750551345e-18,-4.113987951501534e-17,-2.3651447107572864e-17)
    sum e = 0.06836297989807306
    sum de = 8.754932542820448e-18
Info: cfl dt = 0.00024240977439775305 cfl multiplier : 0.7385479855713051      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5993e+04 | 82944 |      1 | 1.091e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6780888223015266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0027556396592134623, dt = 0.00024240977439775305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 360.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0428635010206156e-21,-1.2102737701160065e-19,-3.9916186218494394e-20)
    sum a = (1.0694721581366534e-17,-3.937479525760678e-17,-1.2223370163230756e-17)
    sum e = 0.06836301921891957
    sum de = -1.8973538018496328e-19
Info: cfl dt = 0.00026216075257060804 cfl multiplier : 0.8256986570475368      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3584e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7741972743992032 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.53s (niter = 2) global walltime = 34.74s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.0029980494336112155, dt = 0.00026216075257060804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 358.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.085727002041231e-21,-1.3118951683607e-19,-4.180870675259893e-20)
    sum a = (5.864847318813906e-18,-4.184962666297229e-17,-2.5259604247676097e-17)
    sum e = 0.06836303744887547
    sum de = -4.87890977618477e-19
Info: cfl dt = 0.00027139061611092637 cfl multiplier : 0.8837991046983579      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3398e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8351639711584076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.003260210186181824, dt = 0.00027139061611092637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (1.7%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 426.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5487357397847627e-20,-1.4290399458468703e-19,-5.0086851001594004e-20)
    sum a = (1.0733053916783619e-18,-4.475449895629821e-17,-9.92269594087025e-18)
    sum e = 0.06836304039869706
    sum de = 3.5236570605778894e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010316927754265867
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.534934057710189e-21,-1.4381995584663702e-19,-4.815729162076538e-20)
    sum a = (8.89310181676357e-18,-4.294838712113856e-17,-6.725367178379143e-18)
    sum e = 0.06836285985727072
    sum de = -7.318364664277155e-19
Info: cfl dt = 0.00013727702941727384 cfl multiplier : 0.46126636823278594     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1493e+04 | 82944 |      1 | 1.611e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6065389505112996 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.28s (niter = 1) global walltime = 37.49s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.0035316008022927502, dt = 0.00013727702941727384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.7%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 356.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0962995931218005e-21,-1.492104405146645e-19,-4.8813188984870396e-20)
    sum a = (-1.76328742918588e-18,-3.5034556685733316e-17,-2.4650504648788157e-17)
    sum e = 0.06836290642641975
    sum de = 3.74049749507499e-18
Info: cfl dt = 0.000187806439196757 cfl multiplier : 0.640844245488524         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6004e+04 | 82944 |      1 | 1.091e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4528457430645154 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.27s (niter = 1) global walltime = 38.58s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.003668877831710024, dt = 0.000187806439196757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 388.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2460352783447863e-21,-1.5549115062374428e-19,-5.467271624656057e-20)
    sum a = (-1.76328742918588e-18,-3.7704942896000044e-17,-1.1627902245024702e-17)
    sum e = 0.06836294269118569
    sum de = -5.068645156369733e-18
Info: cfl dt = 0.00021847574068416112 cfl multiplier : 0.7605628303256827      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5810e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.61795550308656 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.26s (niter = 1) global walltime = 39.67s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.003856684270906781, dt = 0.00021847574068416112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.3%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 424.71 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.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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2011145727778905e-20,-1.6364121717802976e-19,-5.600859230038827e-20)
    sum a = (2.6832634791959046e-19,-3.9230150585681375e-17,-2.340732524080917e-17)
    sum e = 0.06836296679144524
    sum de = -2.222614453595284e-18
Info: cfl dt = 0.00023618363001471043 cfl multiplier : 0.8403752202171217      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5654e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7173852285581762 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 40.77s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.004075160011590942, dt = 0.00023618363001471043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 309.08 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703317e-21,-1.728055090376928e-19,-6.294201304923837e-20)
    sum a = (3.449910187537592e-18,-3.9501771118675875e-17,-1.1345786309011656e-17)
    sum e = 0.06836297860055196
    sum de = -6.3696877633523385e-18
Info: cfl dt = 0.0002455205455488656 cfl multiplier : 0.8935834801447479       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5385e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7727759024707225 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 41.87s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.004311343641605653, dt = 0.0002455205455488656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 335.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8898987248036254e-20,-1.8236987593131102e-19,-6.43211437853787e-20)
    sum a = (4.829874262552629e-18,-4.0356761881299124e-17,-2.973191027122704e-17)
    sum e = 0.06836298127331542
    sum de = -7.535205098774256e-18
Info: cfl dt = 0.0002493650992388881 cfl multiplier : 0.929055653429832        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0923e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7557778399450222 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 43.04s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.004556864187154518, dt = 0.0002493650992388881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 421.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.0%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6054009228799523e-20,-1.933321658236907e-19,-7.385028639436924e-20)
    sum a = (1.6482904229346272e-18,-3.9836879582204916e-17,-8.708907632027131e-18)
    sum e = 0.06836297800081981
    sum de = 1.0299920638612292e-17
Info: cfl dt = 0.00025008355331410277 cfl multiplier : 0.9527037689532213      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5024e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8119990637548141 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 44.15s (max_walltime = 45.12s)  [SPH][rank=0]
---------------- t = 0.004806229286393407, dt = 0.00025008355331410277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 325.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6952423340137436e-20,-2.027631743726572e-19,-7.341682894710908e-20)
    sum a = (-6.056508995899328e-18,-3.748243566775869e-17,-2.4856271285818496e-17)
    sum e = 0.06836297168496851
    sum de = 8.348356728138384e-18
Info: cfl dt = 0.0002489687954093467 cfl multiplier : 0.9684691793021475       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5826e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8230434738738723 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 45.24s > 45.12s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 1):
   -> walltime = 45.243840011 >= 45.118018924
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000001.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (53.7%)
Info: dump to _to_trash/sod_128/dump/dump_0000001.sham                      [Shamrock Dump][rank=0]
              - took 5.20 ms, bandwidth = 2.81 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 45.243840011 -> 75.243840011

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.0050563128397075096)
   -> iter = None (current = 24)
   -> walltime = 75.243840011 (current = 45.251984215)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 75.24s)       [SPH][rank=0]
---------------- t = 0.0050563128397075096, dt = 0.0002489687954093467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 364.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0930705021277961e-20,-2.116326741020375e-19,-8.177768469454927e-20)
    sum a = (-1.5716257521004586e-18,-4.016869386065905e-17,-1.3194089017881266e-17)
    sum e = 0.06836296400324265
    sum de = 5.5294310796760726e-18
Info: cfl dt = 0.00024683060563263933 cfl multiplier : 0.9789794528680984      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5744e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8184839523767831 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.58s (niter = 6) global walltime = 46.35s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.005305281635116856, dt = 0.00024683060563263933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1.84 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 408.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4224890096183647e-20,-2.2179598373654763e-19,-8.343597112652997e-20)
    sum a = (7.283143729246027e-19,-3.9074425473049474e-17,-2.159822557377349e-17)
    sum e = 0.06836295596343003
    sum de = 4.824699667560495e-18
Info: cfl dt = 0.00024417091749593235 cfl multiplier : 0.9859863019120656      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5763e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8116555443242836 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0055521122407494955, dt = 0.00024417091749593235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 328.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6899560384734586e-21,-2.322681232218302e-19,-8.976000709666104e-20)
    sum a = (1.1116377270954463e-18,-4.036814179337607e-17,-1.0331087177170764e-17)
    sum e = 0.0683629481306915
    sum de = 1.555830117516699e-17
Info: cfl dt = 0.00024129713929305996 cfl multiplier : 0.9906575346080437      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5741e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8026812269386406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.005796283158245428, dt = 0.00024129713929305996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 318.04 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.219317232294194e-20,-2.4140433964051397e-19,-9.079510641907345e-20)
    sum a = (7.858128760502292e-18,-3.7279094607225873e-17,-2.675066166554618e-17)
    sum e = 0.06836294080077311
    sum de = -2.8731357570865868e-18
Info: cfl dt = 0.00023832734308586377 cfl multiplier : 0.9937716897386958      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5815e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7940115418653305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0060375802975384885, dt = 0.00023832734308586377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.6%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 379.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.009687272982014e-20,-2.5006327356254946e-19,-9.929439283420657e-20)
    sum a = (6.631494027155593e-18,-4.1120713347306794e-17,-1.0474694200365243e-17)
    sum e = 0.06836293405607484
    sum de = -4.228388472693467e-18
Info: cfl dt = 0.00023533183941782233 cfl multiplier : 0.9958477931591304      [sph::Model][rank=0]
Info: Timestep 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.9813e+04 | 82944 |      1 | 1.188e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7221551190249872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.006275907640624352, dt = 0.00023533183941782233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.4%)
   patch tree reduce : 1.70 us    (0.3%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.2%)
   LB compute        : 466.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5455066487907578e-20,-2.5981481006269636e-19,-9.986830498177428e-20)
    sum a = (0,-3.571345828253433e-17,-2.1746012263110616e-17)
    sum e = 0.06836292792273971
    sum de = -5.963111948670274e-19
Info: cfl dt = 0.0002321846587266374 cfl multiplier : 0.9972318621060868       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0955e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7247368843268777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.006511239480042175, dt = 0.0002321846587266374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.07 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 414.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4139736230840756e-20,-2.675636317729859e-19,-1.0584882291629964e-19)
    sum a = (3.909898212542604e-18,-4.274968786684766e-17,-1.0059949420370224e-17)
    sum e = 0.06836292225689801
    sum de = 7.752045533271357e-18
Info: cfl dt = 0.00022921206272050532 cfl multiplier : 0.9981545747373911      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5632e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7621822247807047 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.48s (niter = 4) global walltime = 53.09s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.006743424138768812, dt = 0.00022921206272050532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 325.72 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353480599245494e-20,-2.7864641209956845e-19,-1.0692258316253488e-19)
    sum a = (4.2932215667134474e-18,-4.0012220069601034e-17,-2.388960832799243e-17)
    sum e = 0.06836291726180196
    sum de = 1.0191500421363742e-17
Info: cfl dt = 0.00022642674767894743 cfl multiplier : 0.998769716491594       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6076e+04 | 82944 |      1 | 1.090e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7568423260002392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.006972636201489317, dt = 0.00022642674767894743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.09 us    (1.7%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 447.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 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: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7069868115420378e-20,-2.868795351667511e-19,-1.1388718982610357e-19)
    sum a = (7.819796425085208e-18,-4.0946271274022014e-17,-9.379964351868979e-18)
    sum e = 0.06836291285660044
    sum de = 1.2739375526704677e-17
Info: cfl dt = 0.0002238305039575563 cfl multiplier : 0.9991798109943959       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5487e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7418518012132561 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.007199062949168265, dt = 0.0002238305039575563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 422.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 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: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5936564453516584e-21,-2.9620760043212676e-19,-1.1445691474565824e-19)
    sum a = (1.2266347333466993e-18,-3.6940691958621925e-17,-2.3787290991856672e-17)
    sum e = 0.06836290898439507
    sum de = -1.3931997916438732e-17
Info: cfl dt = 0.00022141892955169736 cfl multiplier : 0.9994532073295973      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3806e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7170182976948796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0074228934531258214, dt = 0.00022141892955169736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 357.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.283612483825118e-21,-3.044687989402887e-19,-1.2118933325643923e-19)
    sum a = (-7.12981438757769e-18,-4.041890219066666e-17,-8.381815312742792e-18)
    sum e = 0.06836290558766757
    sum de = -2.168404344971009e-19
Info: cfl dt = 0.00021918429914322225 cfl multiplier : 0.999635471553065       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5014e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7208970212069967 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 57.52s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.0076443123826775185, dt = 0.00021918429914322225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (1.7%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 392.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3176740299622747e-20,-3.141127129166816e-19,-1.2152676365635988e-19)
    sum a = (4.446550908381785e-18,-3.259042109583852e-17,-2.4555809132595587e-17)
    sum e = 0.06836290260371057
    sum de = 2.1738253558334364e-17
Info: cfl dt = 0.00021711724707719154 cfl multiplier : 0.9997569810353767      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5786e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7209721800520574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.007863496681820742, dt = 0.00021711724707719154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.7%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 386.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.89312781579763e-21,-3.1995240464037806e-19,-1.285832355041029e-19)
    sum a = (8.778104810512317e-18,-3.995786601586509e-17,-1.062543963255841e-17)
    sum e = 0.06836290000110636
    sum de = -9.974659986866641e-18
Info: cfl dt = 0.00021520786653735752 cfl multiplier : 0.9998379873569178      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5669e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7130665227223064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008080613928897933, dt = 0.00021520786653735752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.13 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 446.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.881383338269336e-20,-3.287587346275549e-19,-1.2933693285621648e-19)
    sum a = (-2.9899221625325797e-18,-3.556866387492371e-17,-1.9269501773085732e-17)
    sum e = 0.06836289772508651
    sum de = -1.4907779871675686e-17
Info: cfl dt = 0.00021344627165684733 cfl multiplier : 0.9998919915712786      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5606e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7062115255771132 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.33s (niter = 3) global walltime = 60.81s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.00829582179543529, dt = 0.00021344627165684733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 333.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.994713704459715e-20,-3.3654966949931336e-19,-1.3413389820561534e-19)
    sum a = (-1.4949610812662899e-18,-3.50637551443518e-17,-1.081495618304362e-17)
    sum e = 0.06836289573567046
    sum de = -6.2341624917916505e-18
Info: cfl dt = 0.00021182297005282904 cfl multiplier : 0.9999279943808524      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5084e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6955906201561581 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008509268067092138, dt = 0.00021182297005282904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.4%)
   patch tree reduce : 1.95 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 424.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.1%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.99588559090744e-20,-3.4368551074822126e-19,-1.3592580708852438e-19)
    sum a = (7.819796425085208e-18,-3.6097717484737823e-17,-2.8810732703384665e-17)
    sum e = 0.06836289399833832
    sum de = 5.366800753803247e-18
Info: cfl dt = 0.00021032906204637727 cfl multiplier : 0.9999519962539015      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5463e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6937812748765504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008721091037144966, dt = 0.00021032906204637727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.2%)
   LB compute        : 426.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.0%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.773339267619241e-20,-3.5149750220071425e-19,-1.4371741143999325e-19)
    sum a = (2.37660479585923e-18,-4.185188234918347e-17,-8.801925540243314e-18)
    sum e = 0.06836289248176916
    sum de = 1.3715157481941631e-17
Info: cfl dt = 0.00020895629390457895 cfl multiplier : 0.9999679975026009      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5732e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6913434702246082 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 64.11s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.008931420099191343, dt = 0.00020895629390457895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 323.27 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.923074952842227e-20,-3.604886621743382e-19,-1.4353955505666084e-19)
    sum a = (1.1499700625125306e-18,-3.2354961730825376e-17,-2.2458647682497654e-17)
    sum e = 0.06836289116041704
    sum de = 1.2793585635328952e-17
Info: cfl dt = 0.000211083197159784 cfl multiplier : 0.9999786650017338        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5406e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6838756870075465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.009140376393095923, dt = 0.000211083197159784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.5%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 409.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.030181514334142e-19,-3.663400519984427e-19,-1.4946966075366056e-19)
    sum a = (-3.8332335417084353e-19,-2.5843181384005557e-17,8.306147041686534e-18)
    sum e = 0.06836289147210996
    sum de = 5.095750210681871e-18
Info: cfl dt = 0.00020988803932745693 cfl multiplier : 0.9999857766678225      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5230e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6892296851745445 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 66.31s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.009351459590255707, dt = 0.00020988803932745693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.6%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 372.29 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.689956038473459e-20,-3.7166268768410352e-19,-1.4461052480669607e-19)
    sum a = (-2.37660479585923e-18,-2.2112479352753562e-17,4.0818077590828426e-18)
    sum e = 0.06836289041486558
    sum de = 2.168404344971009e-18
Info: cfl dt = 0.00020880735043754328 cfl multiplier : 0.9999905177785484      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4946e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6827337503158142 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.009561347629583163, dt = 0.00020880735043754328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 358.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5637093083070613e-20,-3.758248718092862e-19,-1.441579007890807e-19)
    sum a = (2.6832634791959047e-18,-2.3769267275824594e-17,1.2593481923883894e-17)
    sum e = 0.06836288950173966
    sum de = 0
Info: cfl dt = 0.00020783361352512693 cfl multiplier : 0.9999936785190323      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5131e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6808943493817804 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 68.53s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.009770154980020707, dt = 0.00020783361352512693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 397.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.6899560384734586e-21,-3.807053192995229e-19,-1.4069985416501957e-19)
    sum a = (7.05314971674352e-18,-2.0780842470144244e-17,1.3470953686612637e-18)
    sum e = 0.06836288871167755
    sum de = 3.686287386450715e-18
Info: cfl dt = 0.00020696141399342876 cfl multiplier : 0.999995785679355       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3312e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6613189365542126 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 69.66s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.009977988593545834, dt = 0.00020696141399342876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 428.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.994713704459715e-21,-3.846475791370343e-19,-1.4161839056536867e-19)
    sum a = (-8.433113791758558e-19,-4.021616007287474e-17,-1.478863423945308e-17)
    sum e = 0.06836288803038533
    sum de = -2.0057740190981832e-18
Info: cfl dt = 0.00020618590310234817 cfl multiplier : 0.9999971904529034      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5134e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6749052969024393 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 70.76s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.010184950007539263, dt = 0.00020618590310234817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 364.74 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 37.64 us   (9.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8514362012247384e-20,-3.950752658407663e-19,-1.4635222398111632e-19)
    sum a = (-1.2266347333466993e-18,-3.437077839313982e-17,-1.706783921046789e-17)
    sum e = 0.06836288744153785
    sum de = -2.2822455730819868e-17
Info: cfl dt = 0.00020621377382707917 cfl multiplier : 0.9999981269686021      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4536e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6670275688733447 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 71.88s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.01039113591064161, dt = 0.00020621377382707917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 327.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0962995931218006e-20,-4.0154431536641563e-19,-1.5029360689425184e-19)
    sum a = (-5.749850312562653e-18,-2.3743138398753183e-17,6.58460167782037e-18)
    sum e = 0.0683628872291085
    sum de = -1.2630955309456127e-17
Info: cfl dt = 0.0002083730013251512 cfl multiplier : 0.9999987513124013       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5004e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.671307663864588 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 72.98s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.010597349684468689, dt = 0.0002083730013251512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 341.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3176740299622747e-20,-4.0518710383348107e-19,-1.4629856066066437e-19)
    sum a = (1.6099580875175429e-18,-4.5365420552008e-18,2.0357198600754612e-17)
    sum e = 0.06836288792342089
    sum de = -2.3960868011929648e-17
Info: cfl dt = 0.00020813306946839747 cfl multiplier : 0.9999991675416009      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4430e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6731452623231996 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 74.10s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.01080572268579384, dt = 0.00020813306946839747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 421.97 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.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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0361709417430615e-19,-4.0420446339920522e-19,-1.4069396110641005e-19)
    sum a = (2.2999401250250614e-19,-1.0143394788375501e-17,2.5256433147097283e-17)
    sum e = 0.06836288765530929
    sum de = -1.3715157481941631e-17
Info: cfl dt = 0.00020796585157951242 cfl multiplier : 0.999999445027734       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4319e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6713685325000089 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 75.22s (max_walltime = 75.24s)  [SPH][rank=0]
---------------- t = 0.011013855755262238, dt = 0.00020796585157951242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.5%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 437.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.773339267619241e-20,-4.066049136029362e-19,-1.350127769928507e-19)
    sum a = (-8.433113791758558e-19,-8.546313969787136e-18,1.9068107914593108e-17)
    sum e = 0.06836288744273517
    sum de = -2.7755575615628914e-17
Info: cfl dt = 0.00020786783215126728 cfl multiplier : 0.9999996300184893      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4763e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6748316700499747 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 76.33s > 75.24s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 2):
   -> walltime = 76.326631139 >= 75.243840011
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000002.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (57.3%)
Info: dump to _to_trash/sod_128/dump/dump_0000002.sham                      [Shamrock Dump][rank=0]
              - took 5.32 ms, bandwidth = 2.75 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 76.326631139 -> 106.326631139

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.01122182160684175)
   -> iter = None (current = 52)
   -> walltime = 106.326631139 (current = 76.33522041100001)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 106.33s)      [SPH][rank=0]
---------------- t = 0.01122182160684175, dt = 0.00020786783215126728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 390.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.689956038473459e-20,-4.0839472296536723e-19,-1.3168999714697527e-19)
    sum a = (7.666467083416871e-19,-1.3720879779723077e-17,2.291968193391855e-17)
    sum e = 0.06836288727692644
    sum de = -9.486769009248164e-18
Info: cfl dt = 0.00020783658460717303 cfl multiplier : 0.9999997533456595      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2714e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6560249037696911 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.85s (niter = 6) global walltime = 77.48s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.011429689438993017, dt = 0.00020783658460717303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 322.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.385198372487202e-21,-4.11712304241089e-19,-1.263800102508376e-19)
    sum a = (-3.833233541708435e-18,-1.4602972701371685e-17,-4.283107538212136e-18)
    sum e = 0.06836288715131297
    sum de = -5.149960319306146e-18
Info: cfl dt = 0.00020786992591924203 cfl multiplier : 0.999999835563773       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4890e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6755601513545842 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01163752602360019, dt = 0.00020786992591924203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.7%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 372.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9712247494031273e-20,-4.146953198451407e-19,-1.3006180384611146e-19)
    sum a = (-6.976485045909353e-18,-2.125692708131073e-17,2.963685682045751e-18)
    sum e = 0.06836288706516169
    sum de = 5.366800753803247e-18
Info: cfl dt = 0.00020796590199195856 cfl multiplier : 0.9999998903758488      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4477e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6719383904627406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.011845395949519432, dt = 0.00020796590199195856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.7%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 406.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.671753378957156e-20,-4.2010920071398424e-19,-1.2869529905589552e-19)
    sum a = (-4.5998802500501224e-18,-1.4562094859305812e-17,-8.052810875543142e-18)
    sum e = 0.06836288701260074
    sum de = 2.168404344971009e-19
Info: cfl dt = 0.00020812276997263931 cfl multiplier : 0.9999999269172326      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4546e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6728757237594445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01205336185151139, dt = 0.00020812276997263931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 375.87 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8931278157976296e-20,-4.221376513247394e-19,-1.314753310642306e-19)
    sum a = (2.2999401250250612e-18,-2.3728314565916108e-17,7.578515792261726e-19)
    sum e = 0.0683628869908254
    sum de = 1.8973538018496328e-18
Info: cfl dt = 0.0002083389852566983 cfl multiplier : 0.9999999512781551       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4056e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6689545934796174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012261484621484029, dt = 0.0002083389852566983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 390.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-20,-4.2834466340124845e-19,-1.3057144145306633e-19)
    sum a = (-3.0665868333667483e-18,-2.017583543400077e-17,-1.128105848666463e-17)
    sum e = 0.06836288699775522
    sum de = -1.1926223897340549e-18
Info: cfl dt = 0.00020861318294768135 cfl multiplier : 0.9999999675187702      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4888e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.677174277485043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.012469823606740727, dt = 0.00020861318294768135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 354.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0364053190326064e-20,-4.322939420990047e-19,-1.341860849269351e-19)
    sum a = (1.6099580875175429e-18,-1.9024517750321234e-17,3.2873687349170833e-18)
    sum e = 0.06836288703105894
    sum de = 4.553649124439119e-18
Info: cfl dt = 0.0002089441327699005 cfl multiplier : 0.9999999783458469       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0390e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6373417569747301 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.51s (niter = 4) global walltime = 84.22s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.012678436789688408, dt = 0.0002089441327699005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 346.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.887841520257345e-20,-4.358431457628058e-19,-1.3188191777022438e-19)
    sum a = (-3.0665868333667484e-19,-2.138599924197294e-17,-4.721819686957637e-18)
    sum e = 0.06836288709205232
    sum de = 1.1058862159352145e-17
Info: cfl dt = 0.0002093307560995018 cfl multiplier : 0.9999999855638979       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4518e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6757832417361853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012887380922458308, dt = 0.0002093307560995018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 328.50 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.197885481783886e-20,-4.409154420997345e-19,-1.3369335579270456e-19)
    sum a = (1.4566287458492054e-18,-2.3495924782450035e-17,8.069961315946091e-18)
    sum e = 0.0683628871772546
    sum de = -1.0842021724855044e-18
Info: cfl dt = 0.00021580596487387515 cfl multiplier : 0.9999999903759319      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4851e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6800574195703657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01309671167855781, dt = 0.00021580596487387515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.6%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 376.49 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.557251126319052e-20,-4.458801159129091e-19,-1.3062429602274926e-19)
    sum a = (1.303299404180868e-18,-8.43371273449945e-18,1.8541112367864188e-17)
    sum e = 0.06836288976297149
    sum de = 1.940721888749053e-17
Info: cfl dt = 0.00021669144218721678 cfl multiplier : 0.9999999935839545      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4659e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6992969466409786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.013312517643431684, dt = 0.00021669144218721678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 342.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.713444993530047e-20,-4.465773226972286e-19,-1.2539922820063253e-19)
    sum a = (-1.839952100020049e-18,-2.6223809495842387e-17,5.554809136325962e-19)
    sum e = 0.06836289005861305
    sum de = 3.903127820947816e-18
Info: cfl dt = 0.0002176554396058351 cfl multiplier : 0.9999999957226363       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4731e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7028437567483974 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.36s (niter = 3) global walltime = 88.67s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.013529209085618901, dt = 0.0002176554396058351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 339.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0910132975815157e-20,-4.537576167276871e-19,-1.272781958584145e-19)
    sum a = (-7.666467083416871e-19,-2.337344099193763e-17,-6.5241105454494554e-18)
    sum e = 0.06836289038928385
    sum de = -2.0057740190981832e-17
Info: cfl dt = 0.00021869719355695338 cfl multiplier : 0.9999999971484241      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5044e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7089302607896265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.013746864525224736, dt = 0.00021869719355695338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 382.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271088e-20,-4.587737621826571e-19,-1.2940152430874692e-19)
    sum a = (1.5332934166833742e-19,-1.170603639936258e-17,2.44436775982343e-17)
    sum e = 0.06836289075499422
    sum de = -7.15573433840433e-18
Info: cfl dt = 0.000219817794398015 cfl multiplier : 0.9999999980989495        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5145e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7132780859380611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01396556171878169, dt = 0.000219817794398015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 322.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.557251126319052e-20,-4.601178739195416e-19,-1.2068654146895572e-19)
    sum a = (-5.289862287557641e-18,-1.0660581845135694e-17,1.9905334750536872e-17)
    sum e = 0.06836289115647538
    sum de = 1.8431436932253575e-17
Info: cfl dt = 0.0002210185339914281 cfl multiplier : 0.999999998732633        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2015e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6870719904483313 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.36s (niter = 3) global walltime = 92.03s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.014185379513179705, dt = 0.0002210185339914281 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 366.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.78625563159526e-21,-4.621814188315208e-19,-1.1669351121255428e-19)
    sum a = (1.5332934166833742e-19,-8.254029912231867e-18,2.0116111286554192e-17)
    sum e = 0.0683628915963027
    sum de = -1.1926223897340549e-18
Info: cfl dt = 0.0002223009113399274 cfl multiplier : 0.9999999991550886       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3315e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7032992762339769 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.014406398047171132, dt = 0.0002223009113399274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 411.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8150308821921326e-20,-4.635945493608127e-19,-1.1228611044526437e-19)
    sum a = (-2.8365928208642422e-18,-1.1358050666904361e-17,2.2386021680275118e-17)
    sum e = 0.06836289207442035
    sum de = -1.8431436932253575e-18
Info: cfl dt = 0.00022366662458720888 cfl multiplier : 0.9999999994367258      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5312e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7266438416288787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01462869895851106, dt = 0.00022366662458720888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.6%)
   patch tree reduce : 1.69 us    (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        : 375.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.73164765304635e-20,-4.6658575363515e-19,-1.0707531443870408e-19)
    sum a = (-1.5332934166833742e-19,-2.436439175674335e-17,-1.5078289891257776e-18)
    sum e = 0.06836289259267556
    sum de = -1.1275702593849246e-17
Info: cfl dt = 0.00022511757117738875 cfl multiplier : 0.9999999996244838      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4964e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7277327016911919 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.24s (niter = 2) global walltime = 95.38s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.014852365583098269, dt = 0.00022511757117738875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 326.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.934819430370521e-20,-4.735508026181005e-19,-1.100219997349645e-19)
    sum a = (3.909898212542604e-18,-1.631669761874876e-17,-3.815922713385893e-18)
    sum e = 0.06836289315374494
    sum de = -1.3010426069826053e-17
Info: cfl dt = 0.00022665587852727624 cfl multiplier : 0.9999999997496559      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2086e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7043349437040638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.015077483154275657, dt = 0.00022665587852727624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 384.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.049321683008625e-20,-4.762226487512981e-19,-1.1119152850216937e-19)
    sum a = (-3.2199161750350858e-18,-2.500975256005442e-17,7.402823129209103e-19)
    sum e = 0.06836289375694533
    sum de = -1.0516761073109393e-17
Info: cfl dt = 0.00022828390394602616 cfl multiplier : 0.9999999998331038      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4346e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7313788475114209 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 97.64s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.015304139032802934, dt = 0.00022828390394602616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 333.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.736933948586635e-20,-4.830742261602906e-19,-1.1033902123545625e-19)
    sum a = (1.303299404180868e-18,-3.647261820661487e-18,1.5383071110875e-17)
    sum e = 0.06836289440495374
    sum de = 9.974659986866641e-18
Info: cfl dt = 0.00023000424597146037 cfl multiplier : 0.9999999998887358      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4836e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7414853267209973 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 98.75s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.01553242293674896, dt = 0.00023000424597146037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 400.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.551964830778767e-20,-4.814821146947556e-19,-1.0526713622412829e-19)
    sum a = (6.899820375075184e-19,-8.643043222441185e-18,2.5364839659161218e-17)
    sum e = 0.06836289509826726
    sum de = -6.7220534694101275e-18
Info: cfl dt = 0.000231819756318945 cfl multiplier : 0.9999999999258238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5162e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7503323970033812 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 99.86s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.01576242718272042, dt = 0.000231819756318945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 328.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.390484668027487e-20,-4.841223759568514e-19,-9.822784598556069e-20)
    sum a = (-3.756568870874267e-18,-2.149216184279604e-17,-5.6697854392210974e-18)
    sum e = 0.06836289583930102
    sum de = -3.230922474006803e-17
Info: cfl dt = 0.0002337335555736174 cfl multiplier : 0.9999999999505492       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3273e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7372406958862607 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 100.99s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.015994246939039367, dt = 0.0002337335555736174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 315.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.348793053454597e-20,-4.907084064865812e-19,-1.0307572408225854e-19)
    sum a = (1.76328742918588e-18,-2.2012942556001583e-17,1.2697608478617676e-18)
    sum e = 0.06836289663103144
    sum de = -1.0950441942103595e-17
Info: cfl dt = 0.00023742902985960342 cfl multiplier : 0.9999999999670329      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4620e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7569954681102194 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 102.10s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.016227980494612985, dt = 0.00023742902985960342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 403.71 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.30 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.773339267619241e-20,-4.958263254151013e-19,-1.0198695858843796e-19)
    sum a = (-3.2199161750350858e-18,-2.152929629273134e-17,-3.442066977448169e-18)
    sum e = 0.0683628982256189
    sum de = -1.5720931501039814e-17
Info: cfl dt = 0.00024243999938786343 cfl multiplier : 0.999999999978022       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0108e+04 | 82944 |      1 | 1.183e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7224671300760556 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 103.29s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.016465409524472587, dt = 0.00024243999938786343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 414.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.335876689478578e-20,-5.010542064874569e-19,-1.0337858334047029e-19)
    sum a = (5.136532945889304e-18,-2.6712247301039767e-17,2.170599044879923e-18)
    sum e = 0.06836290044369464
    sum de = -2.168404344971009e-18
Info: cfl dt = 0.0002498584674254443 cfl multiplier : 0.999999999985348        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2896e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7670557420226725 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 104.43s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.016707849523860452, dt = 0.0002498584674254443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 396.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406634e-20,-5.082672551990579e-19,-1.0215070195947882e-19)
    sum a = (1.3799640750150368e-18,-2.1021991791195863e-17,-3.940999016009047e-18)
    sum e = 0.06836290383213559
    sum de = -1.3118846287074604e-17
Info: cfl dt = 0.0002548688638925064 cfl multiplier : 0.9999999999902321       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4858e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8118050159562884 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 105.54s (max_walltime = 106.33s)  [SPH][rank=0]
---------------- t = 0.016957707991285896, dt = 0.0002548688638925064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 409.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.671753378957156e-20,-5.130623065563159e-19,-1.0391726696022516e-19)
    sum a = (2.1466107833567237e-18,-2.2465443796745446e-17,5.254045824688212e-18)
    sum e = 0.06836290614551048
    sum de = -4.0115480381963664e-18
Info: cfl dt = 0.0002577975147706513 cfl multiplier : 0.9999999999934882       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5002e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8296731610577962 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 106.64s > 106.33s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 3):
   -> walltime = 106.64326649600001 >= 106.326631139
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000003.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (56.4%)
Info: dump to _to_trash/sod_128/dump/dump_0000003.sham                      [Shamrock Dump][rank=0]
              - took 10.27 ms, bandwidth = 1.42 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 106.64326649600001 -> 136.64326649600002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.017212576855178404)
   -> iter = None (current = 79)
   -> walltime = 136.64326649600002 (current = 106.65804248900001)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 136.64s)      [SPH][rank=0]
---------------- t = 0.017212576855178404, dt = 0.0002577975147706513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.2%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 403.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.796828222675829e-20,-5.189394322013181e-19,-1.0139946177576239e-19)
    sum a = (-4.216556895879279e-18,-1.3246367393251435e-17,1.7206774380183064e-17)
    sum e = 0.06836290748801903
    sum de = -1.1167282376600696e-17
Info: cfl dt = 0.00026753159910712583 cfl multiplier : 0.9999999999956589      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3763e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8253438743183533 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.75s (niter = 6) global walltime = 107.78s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.017470374369949054, dt = 0.00026753159910712583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (0.8%)
   patch tree reduce : 1.96 us    (0.3%)
   gen split merge   : 932.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.1%)
   LB compute        : 634.14 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.6%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3176740299622747e-20,-5.212240712110094e-19,-9.524494149383546e-20)
    sum a = (1.2266347333466993e-18,-2.0231237637533274e-17,2.1369052649012498e-17)
    sum e = 0.0683629122159445
    sum de = -1.3444106938820255e-17
Info: cfl dt = 0.00027690065360973427 cfl multiplier : 0.999999999997106       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5067e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8716513564217339 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01773790596905618, dt = 0.00027690065360973427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.8%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 355.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-5.278580639524122e-19,-8.879993442604644e-20)
    sum a = (4.599880250050123e-19,-1.0394501532494448e-17,2.050061844896884e-17)
    sum e = 0.06836291690185642
    sum de = -1.0408340855860843e-17
Info: cfl dt = 0.000279635732569794 cfl multiplier : 0.9999999999980705        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3752e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8863763984552617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.018014806622665917, dt = 0.000279635732569794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 433.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-5.29412156591621e-19,-8.320213949259638e-20)
    sum a = (3.0665868333667483e-18,-1.652887308470973e-17,1.513488809777738e-17)
    sum e = 0.06836291818563144
    sum de = 1.0733601507606494e-17
Info: cfl dt = 0.00028593060229234793 cfl multiplier : 0.9999999999987136      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4177e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9002841587608449 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01829444235523571, dt = 0.00028593060229234793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 382.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0541392239698198e-19,-5.351682068974e-19,-7.967039557766307e-20)
    sum a = (-7.666467083416871e-20,-8.974258558154428e-18,2.137243493996344e-17)
    sum e = 0.06836292134325454
    sum de = 5.9631119486702744e-18
Info: cfl dt = 0.00028612095951171667 cfl multiplier : 0.9999999999991424      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4509e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9246707726825313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.018580372957528058, dt = 0.00028612095951171667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.7%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 349.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,-5.364924318635907e-19,-7.26005532619312e-20)
    sum a = (1.5332934166833742e-19,-1.2300037862642166e-17,2.0863116534800947e-17)
    sum e = 0.068362921219939
    sum de = -1.8431436932253575e-18
Info: cfl dt = 0.00028425835936150736 cfl multiplier : 0.9999999999994283      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4869e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9297560434465315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.018866493917039776, dt = 0.00028425835936150736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.69 us    (2.2%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 368.88 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0182026595163031e-19,-5.404814841027344e-19,-6.675729247445667e-20)
    sum a = (-2.4532694666933987e-18,-1.1118698174075419e-17,1.886738700273024e-17)
    sum e = 0.068362919970375
    sum de = -1.0842021724855044e-18
Info: cfl dt = 0.00029501921151248037 cfl multiplier : 0.999999999999619       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5015e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9255039662941046 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.46s (niter = 4) global walltime = 114.46s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.019150752276401284, dt = 0.00029501921151248037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.4%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 388.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.307101438881705e-20,-5.436891032346205e-19,-6.149333797831471e-20)
    sum a = (-1.839952100020049e-18,-8.833319844438294e-18,1.4179951698566787e-17)
    sum e = 0.06836292543830005
    sum de = -4.662069341687669e-18
Info: cfl dt = 0.0002945292824369864 cfl multiplier : 0.999999999999746        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5515e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9669450426485441 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.019445771487913766, dt = 0.0002945292824369864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 335.68 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.504986920665591e-20,-5.459058932619452e-19,-5.796499603050152e-20)
    sum a = (8.433113791758558e-19,-7.723946869581845e-18,1.822953227710737e-17)
    sum e = 0.06836292476482438
    sum de = -5.637851296924623e-18
Info: cfl dt = 0.0002941041191285962 cfl multiplier : 0.9999999999998307       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5113e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9601929524397462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01974030077035075, dt = 0.0002941041191285962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 409.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1499700625125307e-19,-5.477898723326609e-19,-5.202822226222798e-20)
    sum a = (-1.5332934166833742e-19,-5.265006163810625e-18,1.9491552317033575e-17)
    sum e = 0.06836292407266449
    sum de = 1.0516761073109393e-17
Info: cfl dt = 0.0002937406274933338 cfl multiplier : 0.9999999999998872       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4787e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9546542127353317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.020034404889479347, dt = 0.0002937406274933338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 413.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.30 us    (58.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-20,-5.489596823734656e-19,-4.610344716539033e-20)
    sum a = (-1.3799640750150368e-18,-1.1205769475032586e-17,1.4769956133848677e-17)
    sum e = 0.06836292335391936
    sum de = 8.673617379884035e-18
Info: cfl dt = 0.00029343773916546805 cfl multiplier : 0.9999999999999248      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4323e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9475597229959533 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 118.90s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02032814551697268, dt = 0.00029343773916546805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 416.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.874925156281327e-20,-5.533587530319111e-19,-4.248307589798622e-20)
    sum a = (-4.446550908381785e-18,-1.1759267435459353e-17,1.5363683689103227e-17)
    sum e = 0.0683629226255987
    sum de = -5.637851296924623e-18
Info: cfl dt = 0.0002931945517849402 cfl multiplier : 0.9999999999999499       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3040e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9302324259041097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.020621583256138148, dt = 0.0002931945517849402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 362.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-5.567974096468562e-19,-3.7934005357960753e-20)
    sum a = (-9.966407208441933e-19,-1.2681714124275556e-17,7.349617738351717e-18)
    sum e = 0.06836292187095022
    sum de = -5.637851296924623e-18
Info: cfl dt = 0.00029301042928039754 cfl multiplier : 0.9999999999999666      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4888e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9529809178256752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02091477780792309, dt = 0.00029301042928039754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 418.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.47386789717327e-20,-5.6090812213024345e-19,-3.6917879023835963e-20)
    sum a = (-1.839952100020049e-18,-1.7030487630206732e-17,1.6309633613799336e-17)
    sum e = 0.0683629210926334
    sum de = -1.3986208025063007e-17
Info: cfl dt = 0.00029288512783006516 cfl multiplier : 0.9999999999999778      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4862e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9520488273637931 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 122.25s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.021207788237203488, dt = 0.00029288512783006516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 413.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353480599245494e-20,-5.661985880397822e-19,-3.0859925687646916e-20)
    sum a = (7.666467083416871e-19,-1.1558846220788387e-17,1.3710870585661416e-17)
    sum e = 0.0683629202777912
    sum de = 2.6020852139652106e-18
Info: cfl dt = 0.0002928192789985622 cfl multiplier : 0.9999999999999852       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4938e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9526202998400186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.021500673365033553, dt = 0.0002928192789985622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.7%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 374.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.588370149811373e-20,-5.689505661607749e-19,-2.722686335273672e-20)
    sum a = (-4.599880250050123e-19,-7.214265314043454e-18,1.130315798305744e-17)
    sum e = 0.06836291943370833
    sum de = 2.0274580625478933e-17
Info: cfl dt = 0.0002928135749697252 cfl multiplier : 0.9999999999999902       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5147e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9550576742770495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.021793492644032117, dt = 0.0002928135749697252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.6%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 397.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9405744804898953e-19,-5.7045552677827e-19,-2.4197106839741038e-20)
    sum a = (-4.5998802500501224e-18,-6.193966354934029e-18,1.2869495911753717e-17)
    sum e = 0.06836291854477788
    sum de = -1.734723475976807e-18
Info: cfl dt = 0.0002928689483197818 cfl multiplier : 0.9999999999999934       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5250e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9563482005276434 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 125.57s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02208630621900184, dt = 0.0002928689483197818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 368.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.755136608102938e-20,-5.719645817309079e-19,-2.0171491957321714e-20)
    sum a = (-2.2999401250250612e-18,-1.0258841001682423e-17,1.2198363058397702e-17)
    sum e = 0.0683629176170222
    sum de = -8.348356728138384e-18
Info: cfl dt = 0.00029298759082140355 cfl multiplier : 0.9999999999999956      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2568e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9224338793403001 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.022379175167321623, dt = 0.00029298759082140355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 382.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3296528847801136e-19,-5.754295590717711e-19,-1.6796908847712486e-20)
    sum a = (-7.666467083416871e-19,-1.4217403311922498e-17,1.666075554580674e-17)
    sum e = 0.06836291664147894
    sum de = -3.198396408832238e-18
Info: cfl dt = 0.00029317163940821393 cfl multiplier : 0.999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5056e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9544521819510534 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 127.82s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.022672162758143027, dt = 0.00029317163940821393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1.97 us    (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        : 375.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.953022089886824e-20,-5.804211385158842e-19,-1.1295375841113408e-20)
    sum a = (-4.369886237547617e-18,-2.55314316873713e-17,-7.666309583006802e-18)
    sum e = 0.06836291563788255
    sum de = 6.993104012531504e-18
Info: cfl dt = 0.0002934236355690435 cfl multiplier : 0.9999999999999979       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3022e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9291681545030327 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 128.95s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02296533439755124, dt = 0.0002934236355690435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 354.91 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.072810638065213e-20,-5.895655436048535e-19,-1.7061050701592708e-20)
    sum a = (1.3799640750150368e-18,-2.1885667223562043e-17,-1.0663532189653221e-17)
    sum e = 0.0683629146002024
    sum de = 2.3310346708438345e-18
Info: cfl dt = 0.0002937461209085269 cfl multiplier : 0.9999999999999986       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4796e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.952559969138905 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 130.06s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02325875803312028, dt = 0.0002937461209085269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 345.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.713444993530047e-20,-5.95459046590427e-19,-2.0630592677673786e-20)
    sum a = (-1.6099580875175429e-18,-2.0795591435138708e-17,-7.131055752784772e-18)
    sum e = 0.06836291352541606
    sum de = 1.1655173354219173e-17
Info: cfl dt = 0.00029414168987432264 cfl multiplier : 0.9999999999999991      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5229e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9591303103444706 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 131.17s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02355250415402881, dt = 0.00029414168987432264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 380.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
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: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.072810638065213e-20,-6.017303982191804e-19,-2.2090248313803903e-20)
    sum a = (-1.839952100020049e-18,-1.8843637042571867e-17,-8.210714853806264e-18)
    sum e = 0.06836291241681956
    sum de = 1.0137290312739466e-17
Info: cfl dt = 0.0002946130310955218 cfl multiplier : 0.9999999999999994       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4817e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9551585971153086 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 132.28s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02384664584390313, dt = 0.0002946130310955218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 363.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.786255631595259e-20,-6.063593365506441e-19,-2.476216371328802e-20)
    sum a = (3.60323952920593e-18,-1.630022669337423e-17,-4.865911027663359e-18)
    sum e = 0.0683629112836928
    sum de = 1.349831704744453e-17
Info: cfl dt = 0.0002951629109472139 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2815e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9310849597153551 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 133.42s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.024141258874998652, dt = 0.0002951629109472139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 1.33 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.2%)
   LB compute        : 434.40 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.51 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.588370149811373e-20,-6.110385767138624e-19,-2.56412618888548e-20)
    sum a = (9.966407208441933e-19,-1.2292700814066238e-17,-4.252391149284938e-18)
    sum e = 0.06836291013667063
    sum de = 1.620882247865829e-17
Info: cfl dt = 0.00029579413015936375 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4725e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9572936226999735 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 134.53s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.024436421785945867, dt = 0.00029579413015936375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 356.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.390484668027487e-20,-6.141561204726065e-19,-2.6837123428750093e-20)
    sum a = (-2.2999401250250614e-19,-1.8156949190139253e-17,-7.356076023671531e-20)
    sum e = 0.06836290898912084
    sum de = 5.963111948670274e-19
Info: cfl dt = 0.00029650953177349793 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3229e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.940137210749717 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 135.66s (max_walltime = 136.64s)  [SPH][rank=0]
---------------- t = 0.02473221591610523, dt = 0.00029650953177349793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 354.89 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1379912076946917e-19,-6.204274721013599e-19,-2.620040285226148e-20)
    sum a = (-7.12981438757769e-18,-2.4060727787111136e-17,-2.2239160883141698e-18)
    sum e = 0.06836290784670176
    sum de = 5.421010862427522e-20
Info: cfl dt = 0.00029731203651161317 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4689e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9611942172962302 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 136.77s > 136.64s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 4):
   -> walltime = 136.773239173 >= 136.64326649600002
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000004.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (54.1%)
Info: dump to _to_trash/sod_128/dump/dump_0000004.sham                      [Shamrock Dump][rank=0]
              - took 7.27 ms, bandwidth = 2.01 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 136.773239173 -> 166.773239173

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.02502872544787873)
   -> iter = None (current = 106)
   -> walltime = 166.773239173 (current = 136.784537287)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 166.77s)      [SPH][rank=0]
---------------- t = 0.02502872544787873, dt = 0.00029731203651161317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 327.51 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4494414329585022e-19,-6.283775011386678e-19,-2.7178687947569693e-20)
    sum a = (-3.756568870874267e-18,-1.7062680802529672e-17,-2.5472193867998113e-18)
    sum e = 0.06836290671927207
    sum de = 4.716279450311944e-18
Info: cfl dt = 0.00029820463499954214 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4711e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.964081441826802 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.67s (niter = 6) global walltime = 137.90s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.025326037484390343, dt = 0.00029820463499954214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 316.53 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0780969336054974e-19,-6.32733873730624e-19,-2.789254613797625e-20)
    sum a = (4.2932215667134474e-18,-2.0392203499147986e-17,-5.4897755681549085e-18)
    sum e = 0.06836290561904133
    sum de = -3.7947076036992655e-19
Info: cfl dt = 0.00029919039828681674 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2469e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9379634736551418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.025624242119389885, dt = 0.00029919039828681674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.6%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 394.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.025832727952037e-20,-6.389689612481124e-19,-2.9931176594269994e-20)
    sum a = (-1.1499700625125306e-18,-1.225916002057629e-17,-2.34611684402504e-18)
    sum e = 0.06836290456150139
    sum de = 4.2825985813177425e-18
Info: cfl dt = 0.0003002725178537942 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4498e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9674146396086263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.025923432517676703, dt = 0.0003002725178537942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.7%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.03 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 394.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.588370149811373e-20,-6.41832656228002e-19,-3.02180035971209e-20)
    sum a = (-2.9899221625325797e-18,-1.916676665128307e-17,-9.1927680274622e-18)
    sum e = 0.06836290338450424
    sum de = -8.131516293641283e-19
Info: cfl dt = 0.00030149008170655544 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4614e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9724241535442888 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0262237050355305, dt = 0.00030149008170655544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 420.68 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.48 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0124476093969286e-19,-6.48070083365572e-19,-3.408048343273389e-20)
    sum a = (9.199760500100246e-19,-1.6837478331954304e-17,-7.814573507345688e-18)
    sum e = 0.06836290252085636
    sum de = -7.26415455565288e-18
Info: cfl dt = 0.00030280106870383933 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1921e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9411264310169373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.026525195117237055, dt = 0.00030280106870383933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 425.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.47386789717327e-20,-6.535026811950685e-19,-3.628090089500851e-20)
    sum a = (1.6099580875175429e-18,-1.688299798026209e-17,-2.7373587046421703e-18)
    sum e = 0.06836290172300773
    sum de = 7.589415207398531e-18
Info: cfl dt = 0.00030421809245155757 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4127e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9742052850966936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.026827996185940894, dt = 0.00030421809245155757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.5%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 426.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0661180787876586e-19,-6.583199589431018e-19,-3.6225427207415666e-20)
    sum a = (-3.2965808458692543e-18,-3.507229007840951e-17,-4.9140086631792e-18)
    sum e = 0.06836290102363378
    sum de = -1.1980434005964824e-17
Info: cfl dt = 0.00031115860886138635 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4316e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.981265266349456 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.50s (niter = 4) global walltime = 144.66s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.027132214278392453, dt = 9.00079438297674e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.1%)
   patch tree reduce : 1.54 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.2%)
   LB compute        : 471.27 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.343506757914312e-20,-6.642859901512051e-19,-3.7103807695469285e-20)
    sum a = (2.37660479585923e-18,-2.5544308956300478e-17,-8.370297452100387e-18)
    sum e = 0.06836284484794297
    sum de = -1.1546753136970622e-17
Info: cfl dt = 0.0003116655627877636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4594e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2914072039656202 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 115                                                     [SPH][rank=0]
Info: time since start : 145.772328235 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 1):
   -> t = 0.02722222222222222 >= 0.02722222222222222
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000001.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.02722222222222222 -> 0.05444444444444444

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.02722222222222222)
   -> iter = None (current = 114)
   -> walltime = 166.773239173 (current = 146.384292589)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 166.77s)      [SPH][rank=0]
---------------- t = 0.02722222222222222, dt = 0.0003116655627877636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 415.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
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: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5936564453516584e-21,-6.721985852672072e-19,-3.970341628694295e-20)
    sum a = (2.606598808361736e-18,-2.5074737847441195e-17,2.330188526203525e-18)
    sum e = 0.06836290287673343
    sum de = 2.8731357570865868e-18
Info: cfl dt = 0.00031335238682152244 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0250e+04 | 82944 |      1 | 1.181e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9502809010530276 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.73s (niter = 4) global walltime = 147.57s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.027533887785009984, dt = 0.00031335238682152244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 325.08 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3296528847801136e-19,-6.800386521606795e-19,-3.7327336274483215e-20)
    sum a = (2.069946112522555e-18,-1.9109867090898334e-17,-4.2474021253012113e-19)
    sum e = 0.06836290216533861
    sum de = -5.692061405548898e-18
Info: cfl dt = 0.0003151448050848175 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4276e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0101835095843814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.027847240171831506, dt = 0.0003151448050848175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.7%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 401.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
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: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353480599245494e-20,-6.8435759083133e-19,-3.79565346863297e-20)
    sum a = (1.839952100020049e-18,-1.0338350650535828e-17,1.8426121023886475e-17)
    sum e = 0.06836290174810743
    sum de = -5.041540102057596e-18
Info: cfl dt = 0.0003170219181732349 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5101e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0272390461083756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.028162384976916324, dt = 0.0003170219181732349 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.5%)
   patch tree reduce : 1.88 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 413.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4494414329585022e-19,-6.866972109129392e-19,-2.9043935536697084e-20)
    sum a = (-8.318116785507305e-18,-2.7010520786003955e-17,2.13078424293185e-18)
    sum e = 0.06836290142147897
    sum de = -1.7835125737386548e-17
Info: cfl dt = 0.00031898835623442426 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5097e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0333122602337905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02847940689508956, dt = 0.00031898835623442426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.7%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 357.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271088e-20,-6.979227080644998e-19,-3.092185461038216e-20)
    sum a = (2.1849431187738084e-18,-2.3348584868190617e-17,-5.9419180920507165e-18)
    sum e = 0.06836290138382485
    sum de = -1.0137290312739466e-17
Info: cfl dt = 0.0003210398103127099 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9602e+04 | 82944 |      1 | 1.192e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9636373191983977 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.42s (niter = 3) global walltime = 152.09s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.028798395251323983, dt = 0.0003210398103127099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 406.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974404e-20,-7.046701723798607e-19,-3.413439342421423e-20)
    sum a = (-2.031613777105471e-18,-2.2647222918606152e-17,-4.344865749551467e-18)
    sum e = 0.06836290153304217
    sum de = 4.607859233063394e-18
Info: cfl dt = 0.0003231764953655291 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5179e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.04754457117032 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.029119435061636695, dt = 0.0003231764953655291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 410.97 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.94773579434654e-20,-7.11988503995134e-19,-3.5475004581070396e-20)
    sum a = (7.283143729246027e-18,-2.1008515579525793e-17,-1.1767622590937806e-17)
    sum e = 0.06836290179066293
    sum de = -1.2088854223213374e-17
Info: cfl dt = 0.00032540011748744105 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4808e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0493118659143967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.029442611557002223, dt = 0.00032540011748744105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 397.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.504986920665591e-20,-7.184505346605385e-19,-4.0483545253452973e-20)
    sum a = (-1.6099580875175429e-18,-2.3076664863825675e-17,-3.8500168744520255e-18)
    sum e = 0.06836290234435227
    sum de = 1.620882247865829e-17
Info: cfl dt = 0.00032771264499550023 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5115e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0608695567581998 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.26s (niter = 2) global walltime = 155.41s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.029768011674489663, dt = 0.00032771264499550023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 353.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-21,-7.263444128158879e-19,-4.042894511109137e-20)
    sum a = (-3.2199161750350858e-18,-2.4871097315537934e-17,-3.2138807087618055e-18)
    sum e = 0.06836290301968721
    sum de = -3.0357660829594124e-18
Info: cfl dt = 0.0003301160345348491 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5297e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.071003227169011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03009572431948516, dt = 0.0003301160345348491 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 379.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.348793053454597e-20,-7.347155734678854e-19,-4.144423185357039e-20)
    sum a = (3.986562883376773e-18,-2.216267824122457e-17,-4.778294958341897e-18)
    sum e = 0.06836290384476962
    sum de = -3.577867169202165e-18
Info: cfl dt = 0.00033261230866141954 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5078e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0757209281994737 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.25s (niter = 2) global walltime = 157.61s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.03042584035402001, dt = 0.00033261230866141954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.5%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 418.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.109215957097819e-20,-7.414443208225933e-19,-4.3162358468162365e-20)
    sum a = (-1.724955093768796e-18,-1.499932306015693e-17,-6.733995260586074e-19)
    sum e = 0.06836290482253113
    sum de = -2.6400322900022033e-17
Info: cfl dt = 0.0003273199940318129 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5376e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.088149970332853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03075845266268143, dt = 0.0003273199940318129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 404.21 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.650800540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.588370149811373e-20,-7.455339767252461e-19,-4.2671217311306535e-20)
    sum a = (6.899820375075184e-19,-1.799882830654378e-17,-3.8622336113753816e-18)
    sum e = 0.06836290284308971
    sum de = -7.101524229780054e-18
Info: cfl dt = 0.00032984329851030493 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5217e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0685834607873506 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 159.82s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.03108577265671324, dt = 0.00032984329851030493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 385.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.431707528021289e-19,-7.516778190595517e-19,-4.440660591430638e-20)
    sum a = (7.666467083416871e-19,-1.3799041807409475e-17,2.7965986730571086e-19)
    sum e = 0.06836290401400735
    sum de = 1.4148838350935833e-17
Info: cfl dt = 0.0003325434984271369 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9320e+04 | 82944 |      1 | 1.197e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9923939245492855 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 161.02s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.03141561595522355, dt = 0.0003325434984271369 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.2%)
   LB compute        : 417.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-7.557674749622045e-19,-4.381502342398183e-20)
    sum a = (-1.724955093768796e-18,-1.2445431212993685e-17,-2.2463272432250217e-18)
    sum e = 0.06836290528536236
    sum de = -3.0357660829594124e-18
Info: cfl dt = 0.0003354392920539034 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3606e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0623822140405013 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 162.15s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.031748159453650684, dt = 0.0003354392920539034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 417.28 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.26 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.749850312562653e-20,-7.598243761837148e-19,-4.49094330163648e-20)
    sum a = (4.983203604220967e-19,-1.721601014419801e-17,-4.333256334275635e-18)
    sum e = 0.06836290669295943
    sum de = -3.577867169202165e-18
Info: cfl dt = 0.00033854151154947193 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0801e+04 | 82944 |      1 | 1.172e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0307904723420407 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 163.32s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.032083598745704586, dt = 0.00033854151154947193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.7%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 356.79 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0311190234923215e-20,-7.668900288301744e-19,-4.6667044136804886e-20)
    sum a = (2.031613777105471e-18,-1.8403713599386732e-17,-1.4172196395085288e-18)
    sum e = 0.06836290821990895
    sum de = -2.710505431213761e-19
Info: cfl dt = 0.00034186174839118556 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4029e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0877578377761754 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 164.44s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.03242214025725406, dt = 0.00034186174839118556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.3%)
   patch tree reduce : 1.94 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 424.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
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: 1.6486183449074072
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703317e-21,-7.730479088849697e-19,-4.682959037379856e-20)
    sum a = (2.031613777105471e-18,-1.7982656852539698e-17,-1.324359127689728e-17)
    sum e = 0.0683629098726454
    sum de = -5.2583805365546965e-18
Info: cfl dt = 0.00034541275660391414 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3045e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0838201404897656 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 165.58s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.03276400200564525, dt = 0.00034541275660391414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.3%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 430.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
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: 1.6486183449074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-20,-7.790186193332363e-19,-5.3379942167170727e-20)
    sum a = (-1.9166167708542177e-18,-2.983453580930947e-17,-1.4167703997147005e-17)
    sum e = 0.06836291164556633
    sum de = 1.100465205072787e-17
Info: cfl dt = 0.00034906354548702744 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1470e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0714624634727146 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 166.74s (max_walltime = 166.77s)  [SPH][rank=0]
---------------- t = 0.03310941476224916, dt = 0.00034906354548702744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 366.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-21,-7.918584543411074e-19,-5.838212198346635e-20)
    sum a = (-2.1082784479396394e-18,-1.3287544706687756e-17,-2.8490673340452554e-18)
    sum e = 0.06836291346624784
    sum de = -1.2468324983583301e-17
Info: cfl dt = 0.0003524374224152008 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1645e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0854407245692739 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 167.90s > 166.77s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 5):
   -> walltime = 167.899376085 >= 166.773239173
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000005.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (57.3%)
Info: dump to _to_trash/sod_128/dump/dump_0000005.sham                      [Shamrock Dump][rank=0]
              - took 10.50 ms, bandwidth = 1.39 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 167.899376085 -> 197.899376085

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.03345847830773619)
   -> iter = None (current = 133)
   -> walltime = 197.899376085 (current = 167.91528402)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 197.90s)      [SPH][rank=0]
---------------- t = 0.03345847830773619, dt = 0.0003524374224152008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.7%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 361.17 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-20,-7.93673999524436e-19,-5.74781110342387e-20)
    sum a = (2.069946112522555e-18,-3.2202156464055316e-17,-1.1990890128113432e-17)
    sum e = 0.06836291516571431
    sum de = -1.1438332919722072e-17
Info: cfl dt = 0.0003547124954109202 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2942e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1157731444295187 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.83s (niter = 6) global walltime = 169.05s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.033810915730151395, dt = 0.0003547124954109202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 341.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
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: 1.6486183449074072
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5093357070476965e-19,-8.08525907802491e-19,-6.339397606264605e-20)
    sum a = (-5.481523964643063e-18,-2.384630628587182e-17,-1.1404170806313487e-17)
    sum e = 0.068362916362642
    sum de = -9.269928574751063e-18
Info: cfl dt = 0.0003557456310750169 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5341e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1599198219264357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.034165628225562315, dt = 0.0003557456310750169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.1%)
   patch tree reduce : 1.60 us    (0.3%)
   gen split merge   : 1.15 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 549.59 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7728705130401514e-19,-8.153482399604632e-19,-6.745853675785993e-20)
    sum a = (-1.5332934166833741e-18,-1.7032134722744186e-17,-1.4433788890619273e-17)
    sum e = 0.06836291697643974
    sum de = 3.5236570605778894e-18
Info: cfl dt = 0.0003569793594459457 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5388e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1640105370560454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03452137385663733, dt = 0.0003569793594459457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 338.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.874925156281327e-20,-8.202240082105367e-19,-7.294689322086438e-20)
    sum a = (1.5332934166833741e-18,-1.8685216687605947e-17,-2.1383213337197026e-17)
    sum e = 0.06836291760482227
    sum de = -1.452830911130576e-17
Info: cfl dt = 0.00034860662053462336 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4926e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1609013926543672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03487835321608328, dt = 0.00034860662053462336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.8%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 365.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6770396744974405e-19,-8.269714725258975e-19,-8.175375793873844e-20)
    sum a = (-1.303299404180868e-18,-2.0395797155593335e-17,-3.1728109114528034e-17)
    sum e = 0.06836291399981881
    sum de = -8.023096076392733e-18
Info: cfl dt = 0.0003517534620796352 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5575e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1434853972479295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0352269598366179, dt = 0.0003517534620796352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.6%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 403.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.389547158869308e-19,-8.343178795821502e-19,-9.478225626731986e-20)
    sum a = (7.283143729246027e-19,-2.3478555442964167e-17,-2.1215603196269733e-17)
    sum e = 0.06836291527683151
    sum de = -1.4203048459560108e-17
Info: cfl dt = 0.0003534570444605071 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3397e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1205532746906373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03557871329869754, dt = 0.0003534570444605071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 374.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-20,-8.432458698135707e-19,-1.0031898719881309e-19)
    sum a = (-9.966407208441933e-19,-2.380258346578671e-17,-3.315959978652709e-17)
    sum e = 0.06836291585730078
    sum de = -1.8973538018496328e-18
Info: cfl dt = 0.0003543452534216703 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5118e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1523884858434623 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.45s (niter = 4) global walltime = 175.70s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.03593217034315804, dt = 0.0003543452534216703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 445.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.874925156281327e-20,-8.519866904384625e-19,-1.142260211360913e-19)
    sum a = (-1.5332934166833741e-18,-1.293117377585705e-17,-2.3083948131661778e-17)
    sum e = 0.06836291598992911
    sum de = -2.168404344971009e-19
Info: cfl dt = 0.00035540812419502626 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4858e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1512860663047537 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.036286515596579715, dt = 0.00035540812419502626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 426.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-20,-8.542795181184395e-19,-1.2066515542178464e-19)
    sum a = (5.213197616723472e-18,-1.7959298085644913e-17,-2.6767860794705534e-17)
    sum e = 0.06836291609778104
    sum de = 2.2768245622195593e-18
Info: cfl dt = 0.0003566373939576463 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5685e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1674949095629767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03664192372077474, dt = 0.0003566373939576463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (1.8%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 395.49 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
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: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.874925156281327e-20,-8.61878604143506e-19,-1.3075649738511572e-19)
    sum a = (-4.216556895879279e-19,-1.3746933788951877e-17,-2.0994140547298837e-17)
    sum e = 0.06836291614494794
    sum de = 6.938893903907228e-18
Info: cfl dt = 0.00035804081219269435 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4945e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1600825347992283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03699856111473238, dt = 0.00035804081219269435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.7%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 349.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084355e-20,-8.662677314166048e-19,-1.3738388519757655e-19)
    sum a = (-3.449910187537592e-18,-1.457347477138276e-17,-2.8056091410849134e-17)
    sum e = 0.06836291612860687
    sum de = 6.505213034913027e-19
Info: cfl dt = 0.0003596236019460855 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4955e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1648042857620815 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.44s (niter = 4) global walltime = 180.12s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.037356601926925075, dt = 0.0003596236019460855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 353.30 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.906044179773648e-20,-8.71564631281368e-19,-1.4873625604198726e-19)
    sum a = (3.60323952920593e-18,-1.2314262752738349e-17,-1.720823151678356e-17)
    sum e = 0.0683629160380077
    sum de = 1.5178830414797062e-18
Info: cfl dt = 0.0003613912536303419 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5371e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1764398325397678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03771622552887116, dt = 0.0003613912536303419 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 371.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
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: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.666467083416871e-20,-8.752331555693311e-19,-1.5279281692459162e-19)
    sum a = (-2.9132574916984108e-18,-2.0765943769464557e-17,-2.6812377400229654e-17)
    sum e = 0.06836291591519701
    sum de = 1.2414114874959026e-17
Info: cfl dt = 0.00035662027644669587 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4239e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1644600280719588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0380776167825015, dt = 0.00035662027644669587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 411.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
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: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156193867210995e-20,-8.842453721236896e-19,-1.6427209463544854e-19)
    sum a = (6.363167679236003e-18,-2.6585870382711568e-17,-1.8491324748257258e-17)
    sum e = 0.06836291291544441
    sum de = 8.944667923005412e-18
Info: cfl dt = 0.00035757974484446655 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4532e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.153634057378345 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0384342370589482, dt = 0.00035757974484446655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.9%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 361.36 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-8.947268700892986e-19,-1.694034765444564e-19)
    sum a = (1.5716257521004586e-18,-2.6923075145833732e-17,-2.1514701815997945e-17)
    sum e = 0.06836291225578355
    sum de = -9.75781955236954e-19
Info: cfl dt = 0.00035870564626139007 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2696e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.128242399165621 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 184.60s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.038791816803792664, dt = 0.00035870564626139007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 319.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6442660108024694
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-20,-9.045345574714041e-19,-1.7773564013073284e-19)
    sum a = (2.261607789607977e-18,-2.6561613201705444e-17,-1.936011781671493e-17)
    sum e = 0.06836291155866976
    sum de = -4.662069341687669e-18
Info: cfl dt = 0.00036000662469151744 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5249e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1715380798266417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03915052245005406, dt = 0.00036000662469151744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 323.53 us  (84.8%)
   LB move op cnt    : 0
   LB apply          : 41.05 us   (10.8%)
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: 1.6442660108024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8207859323115067e-19,-9.139679056404523e-19,-1.8427974977374593e-19)
    sum a = (-1.954949106271302e-18,-3.352971304924231e-17,-2.7686015095151878e-17)
    sum e = 0.06836291084301281
    sum de = 4.336808689942018e-18
Info: cfl dt = 0.0003614890246164438 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4125e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1582316204892917 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 186.82s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.03951052907474557, dt = 0.0003614890246164438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 336.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6442660108024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.822660950627866e-20,-9.272475892236658e-19,-1.9571043880842609e-19)
    sum a = (-2.8749251562813265e-18,-2.7204727969738168e-17,-1.6500657389885715e-17)
    sum e = 0.06836291009482783
    sum de = 4.119968255444917e-18
Info: cfl dt = 0.00036315823654427937 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5844e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.189963292339302 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.039872018099362014, dt = 0.00036315823654427937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 358.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.644266010802469
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6770396744974404e-20,-9.362317303370449e-19,-1.998143293917047e-19)
    sum a = (-1.3416317395979524e-18,-2.82791563790557e-17,-2.247749878070066e-17)
    sum e = 0.06836290936551548
    sum de = 4.607859233063394e-18
Info: cfl dt = 0.00036502060322826326 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5292e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.186763147272964 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 189.02s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04023517633590629, dt = 0.00036502060322826326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 409.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6431809413580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-9.467693791846126e-19,-2.0904182652109825e-19)
    sum a = (2.2999401250250614e-19,-2.874786650772495e-17,-1.8308453504383384e-17)
    sum e = 0.06836290866127072
    sum de = 8.836247705756861e-18
Info: cfl dt = 0.0003670827930448076 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4359e+04 | 82944 |      1 | 1.115e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1780563687767942 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 190.13s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04060019693913456, dt = 0.0003670827930448076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 410.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 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: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0780969336054974e-19,-9.571198584256515e-19,-2.1500825979442572e-19)
    sum a = (-8.049790437587714e-19,-2.9625392490974264e-17,-1.971136709365754e-17)
    sum e = 0.06836290800255436
    sum de = -8.023096076392733e-18
Info: cfl dt = 0.00036935251714321354 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5660e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2054492165853437 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 191.23s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04096727973217937, dt = 0.00036935251714321354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 332.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-20,-9.681160728092145e-19,-2.2259775107118415e-19)
    sum a = (3.60323952920593e-18,-3.240879170966304e-17,-1.2890651626004255e-17)
    sum e = 0.0683629073967679
    sum de = -7.914675859144182e-18
Info: cfl dt = 0.0003718372908751836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5561e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2113112109857036 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 192.33s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04133663224932258, dt = 0.0003718372908751836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 313.65 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7489128034044737e-19,-9.806938703679453e-19,-2.261193062067262e-19)
    sum a = (3.1432515042009172e-18,-3.3641266134733435e-17,-2.0829951088075665e-17)
    sum e = 0.06836290684704845
    sum de = 3.7947076036992655e-19
Info: cfl dt = 0.00034977388123850356 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5839e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2239419843690766 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 193.42s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.041708469540197766, dt = 0.00034977388123850356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 394.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0311190234923215e-20,-9.92906687193945e-19,-2.3483341976844843e-19)
    sum a = (4.868206597969713e-18,-3.416683838986611e-17,-1.3672042929517663e-17)
    sum e = 0.06836289742168655
    sum de = -1.0570971181733668e-17
Info: cfl dt = 0.00035196898212365007 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5520e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1464808095972918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 194.52s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04205824342143627, dt = 0.00035196898212365007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 340.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406634e-20,-1.0049042589724367e-18,-2.384248800794698e-19)
    sum a = (5.136532945889304e-18,-3.245191558700726e-17,-2.1998203440466265e-17)
    sum e = 0.06836289697781897
    sum de = 1.6425662913155392e-17
Info: cfl dt = 0.00035431931451017324 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5752e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1572208856051582 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 195.62s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04241021240355992, dt = 0.00035431931451017324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.6%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 371.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3176740299622746e-19,-1.0160034166395906e-18,-2.475845938750778e-19)
    sum a = (-1.1499700625125307e-19,-4.144893396931558e-17,-2.0324491831093375e-17)
    sum e = 0.06836289652438549
    sum de = -1.5504091066542713e-17
Info: cfl dt = 0.0003568400959443194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5638e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.163193390783545 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 196.72s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04276453171807009, dt = 0.0003568400959443194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 366.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
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: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.94773579434654e-20,-1.0328112473058706e-18,-2.5464197021158554e-19)
    sum a = (2.4532694666933987e-18,-3.5204656424146626e-17,-2.2874637842943565e-17)
    sum e = 0.06836289619151852
    sum de = -3.12792326762068e-17
Info: cfl dt = 0.000359539092579792 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4969e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1611055576557223 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 197.82s (max_walltime = 197.90s)  [SPH][rank=0]
---------------- t = 0.04312137181401441, dt = 0.000359539092579792 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 316.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-20,-1.0441162915402062e-18,-2.6328219117597107e-19)
    sum a = (-1.9166167708542177e-19,-3.691284112117045e-17,-1.5221844086475817e-17)
    sum e = 0.06836289588719364
    sum de = -1.951563910473908e-18
Info: cfl dt = 0.00036242528185984676 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5667e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1807780424379228 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 198.92s > 197.90s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 6):
   -> walltime = 198.920816164 >= 197.899376085
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000006.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (54.8%)
Info: dump to _to_trash/sod_128/dump/dump_0000006.sham                      [Shamrock Dump][rank=0]
              - took 7.65 ms, bandwidth = 1.91 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 198.920816164 -> 228.920816164

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.0434809109065942)
   -> iter = None (current = 161)
   -> walltime = 228.920816164 (current = 198.93234209500002)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 228.92s)      [SPH][rank=0]
---------------- t = 0.0434809109065942, dt = 0.00036242528185984676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 326.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
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: 1.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2218431914195637e-19,-1.0575644277692956e-18,-2.6736685187649513e-19)
    sum a = (3.1432515042009172e-18,-3.98120234584579e-17,-1.6681438321557117e-17)
    sum e = 0.06836289575863855
    sum de = -1.1926223897340549e-17
Info: cfl dt = 0.0003655074536497661 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5899e+04 | 82944 |      1 | 1.093e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.193917526082418 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.56s (niter = 6) global walltime = 200.03s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.04384333618845405, dt = 0.0003655074536497661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 419.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084355e-20,-1.0729497694259574e-18,-2.737677269734793e-19)
    sum a = (1.3416317395979524e-18,-3.460271896955023e-17,-2.2031446474278418e-17)
    sum e = 0.06836289576061394
    sum de = -1.81603863891322e-17
Info: cfl dt = 0.0003541701069190283 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4550e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1826652198506962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04420884364210381, dt = 0.0003541701069190283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 386.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3655894492336302e-19,-1.0840302101324582e-18,-2.8260901424191623e-19)
    sum a = (-3.3732455167034233e-18,-3.7796281663986065e-17,-2.5499066273488987e-17)
    sum e = 0.06836289117182334
    sum de = -6.2341624917916505e-18
Info: cfl dt = 0.0003564554393151746 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4048e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1382654217332295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04456301374902284, dt = 0.0003564554393151746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.2%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 325.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.593656445351658e-20,-1.0983674019925591e-18,-2.922755412310691e-19)
    sum a = (8.8164371459294e-19,-3.0356813879367243e-17,-2.3878666367358706e-17)
    sum e = 0.06836289113764915
    sum de = 1.2902005852577503e-17
Info: cfl dt = 0.00035890771436031363 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5426e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.166926225207147 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.044919469188338015, dt = 0.00035890771436031363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 328.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130426e-20,-1.1079692028074831e-18,-3.0059550193757286e-19)
    sum a = (9.583083854271088e-19,-3.2063201748168386e-17,-2.1607009716570446e-17)
    sum e = 0.06836289122428836
    sum de = -3.469446951953614e-18
Info: cfl dt = 0.00036153886897292845 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3175e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1398928773370094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04527837690269833, dt = 0.00036153886897292845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 319.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 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: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.197885481783886e-19,-1.1196953786565082e-18,-3.0785027282942047e-19)
    sum a = (-3.1815838396180015e-18,-3.138759433644228e-17,-2.7441011567674997e-17)
    sum e = 0.06836289145135489
    sum de = 7.047314121155779e-18
Info: cfl dt = 0.00036435621224586485 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3540e+04 | 82944 |      1 | 1.128e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1539681093097114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04563991577167126, dt = 0.00036435621224586485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 319.85 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7728705130401514e-19,-1.131309252741616e-18,-3.1905314464183715e-19)
    sum a = (-1.9932814416883866e-18,-2.846056116170335e-17,-2.82295343485681e-17)
    sum e = 0.0683628918214937
    sum de = -9.703609443745265e-18
Info: cfl dt = 0.00036736756226253266 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5078e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.187296321642014 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.46s (niter = 4) global walltime = 206.73s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.04600427198391712, dt = 0.00036736756226253266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 383.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
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: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.724955093768796e-19,-1.1407051669893585e-18,-3.2949906013700475e-19)
    sum a = (6.899820375075184e-19,-2.7608265641414114e-17,-2.395104933155696e-17)
    sum e = 0.06836289234100003
    sum de = 7.047314121155779e-18
Info: cfl dt = 0.0003705810154448944 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3780e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1763975349024924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.046371639546179656, dt = 0.0003705810154448944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.7%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 364.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.126012352876853e-19,-1.1508871935845215e-18,-3.3759680867004694e-19)
    sum a = (-2.721595814612989e-18,-3.1759537778536174e-17,-2.204865844153547e-17)
    sum e = 0.06836289301303268
    sum de = 1.4040418133687282e-17
Info: cfl dt = 0.0003737470906244204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5590e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2158079904412669 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04674222056162455, dt = 0.0003737470906244204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.00 us    (1.8%)
   patch tree reduce : 1.88 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 433.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1499700625125307e-19,-1.1636708777104338e-18,-3.4549470645192344e-19)
    sum a = (-3.4115778521205075e-18,-3.464524390415355e-17,-2.2118317624978753e-17)
    sum e = 0.06836289375761728
    sum de = 3.2526065174565133e-18
Info: cfl dt = 0.00037698535071192856 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5627e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2268024149723897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04711596765224897, dt = 0.00037698535071192856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.3%)
   patch tree reduce : 1.64 us    (0.3%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 477.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353480599245493e-19,-1.1774184853099692e-18,-3.5385532962269323e-19)
    sum a = (-5.0598682750551345e-18,-3.398101640450439e-17,-2.3742157347866056e-17)
    sum e = 0.0683628946117993
    sum de = -5.149960319306146e-18
Info: cfl dt = 0.00038045013809824183 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4635e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2211993744197698 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 211.16s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.0474929530029609, dt = 0.00038045013809824183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 406.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.0%)
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: 1.651150173611111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-1.1902770372784932e-18,-3.632435583400656e-19)
    sum a = (3.679904200040098e-18,-3.5036952456696884e-17,-2.5535683378430865e-17)
    sum e = 0.06836289562662107
    sum de = -1.8865117801247777e-17
Info: cfl dt = 0.0003841510088871895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4738e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2341207443968958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04787340314105914, dt = 0.0003841510088871895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.7%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 370.68 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.651150173611111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.551964830778767e-20,-1.2035754378223595e-18,-3.7330146522308347e-19)
    sum a = (1.2266347333466993e-18,-3.2838832597623455e-17,-2.2332012186781935e-17)
    sum e = 0.06836289679647324
    sum de = 1.7564075194265172e-17
Info: cfl dt = 0.00038809972842869956 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5270e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2549973898065605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04825755414994633, dt = 0.00038809972842869956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 360.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.651150173611111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-20,-1.2158069716090121e-18,-3.81393956547349e-19)
    sum a = (3.986562883376773e-18,-3.312153357132445e-17,-2.6238055281280113e-17)
    sum e = 0.06836289812116807
    sum de = 1.474514954580286e-17
Info: cfl dt = 0.0003923064567752588 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5319e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.268725492842748 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.33s (niter = 3) global walltime = 214.48s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.04864565387837503, dt = 0.0003923064567752588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 380.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.1%)
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: 1.6511501736111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.749850312562653e-20,-1.2290024288692878e-18,-3.922988859528614e-19)
    sum a = (6.1331736667334966e-18,-3.0252597842452043e-17,-2.7293665992174832e-17)
    sum e = 0.06836289959842752
    sum de = -5.421010862427522e-18
Info: cfl dt = 0.00037693478271380587 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4902e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.275369246128317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04903796033515029, dt = 0.00037693478271380587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 376.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6480034722222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.252024705753706e-19,-1.2399237754102394e-18,-4.029648372879528e-19)
    sum a = (1.954949106271302e-18,-3.110189864903682e-17,-2.268828578693075e-17)
    sum e = 0.06836289474046142
    sum de = 1.5178830414797062e-17
Info: cfl dt = 0.00038013678033722604 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2793e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1909012985645924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.049414895117864094, dt = 0.00038013678033722604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (1.9%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 374.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.648003472222222
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229004505276208e-20,-1.2518839132674253e-18,-4.107383262614842e-19)
    sum a = (1.8782844354371334e-18,-2.4757897137509358e-17,-2.432903493246062e-17)
    sum e = 0.06836289591085012
    sum de = 1.3931997916438732e-17
Info: cfl dt = 0.00038355266357823517 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5036e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2380146841550859 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 217.84s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.04979503189820132, dt = 0.00038355266357823517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 427.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6467978395061729
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271089e-21,-1.2604188473251356e-18,-4.203921057465249e-19)
    sum a = (4.408218572964701e-18,-2.7015911270671982e-17,-2.1845452383268538e-17)
    sum e = 0.06836289718310547
    sum de = 8.998878031629687e-18
Info: cfl dt = 0.0003871995154831496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4955e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2477883502084575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05017858456177956, dt = 0.0003871995154831496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 396.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6467978395061729
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5812088359547295e-19,-1.2713916655078824e-18,-4.2838948345207355e-19)
    sum a = (1.954949106271302e-18,-2.5299341375275673e-17,-2.62138487320364e-17)
    sum e = 0.06836289854243503
    sum de = 7.535205098774256e-18
Info: cfl dt = 0.0003910873705756984 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4760e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2563774285417193 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 220.05s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.050565784077262706, dt = 0.0003910873705756984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.1%)
   patch tree reduce : 1.60 us    (0.3%)
   gen split merge   : 1.20 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 483.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6467978395061729
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-19,-1.2809373154408477e-18,-4.393943694630006e-19)
    sum a = (1.303299404180868e-18,-3.0613760315209886e-17,-2.4171827181340076e-17)
    sum e = 0.06836289999290301
    sum de = -2.0057740190981832e-18
Info: cfl dt = 0.0003951501478689096 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5329e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.278652025684958 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 221.16s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.050956871447838406, dt = 0.0003951501478689096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 420.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6467978395061729
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.988489899761251e-19,-1.2938473390511671e-18,-4.485044486280874e-19)
    sum a = (6.133173666733497e-19,-2.3198250240226737e-17,-2.4940310144118356e-17)
    sum e = 0.06836290149796082
    sum de = -7.914675859144182e-18
Info: cfl dt = 0.0003881757628421904 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3312e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2573530317260442 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 222.29s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.051352021595707315, dt = 0.0003881757628421904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 358.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.644386574074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.197885481783886e-19,-1.3015914815212934e-18,-4.584641787869719e-19)
    sum a = (4.829874262552629e-18,-2.3173693587850168e-17,-2.2967915155642632e-17)
    sum e = 0.06836289927788909
    sum de = 1.6805133673525319e-18
Info: cfl dt = 0.00039151780583365596 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1129e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.198368802070685 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 223.45s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.051740197358549504, dt = 0.00039151780583365596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 343.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6433015046296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406633e-19,-1.310177887220799e-18,-4.6710672996963715e-19)
    sum a = (4.599880250050123e-19,-2.999864612031386e-17,-2.4671351099530217e-17)
    sum e = 0.06836290044016126
    sum de = 1.2847795743953228e-17
Info: cfl dt = 0.0003950615617560395 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3094e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2420895330501611 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 224.59s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.05213171516438316, dt = 0.0003950615617560395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 334.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 1.6433015046296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-20,-1.324047155064578e-18,-4.771227130403928e-19)
    sum a = (3.8332335417084353e-19,-2.0019062171572303e-17,-1.568766817481437e-17)
    sum e = 0.0683629016466129
    sum de = -4.87890977618477e-18
Info: cfl dt = 0.0003963329555471981 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5162e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2887813530981587 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 225.70s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.0525267767261392, dt = 0.0003963329555471981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 402.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.252024705753706e-19,-1.3296903187014193e-18,-4.816637783794945e-19)
    sum a = (1.3799640750150368e-18,-2.5419728866194954e-17,-2.2970471663290683e-17)
    sum e = 0.06836290202269313
    sum de = 2.6020852139652106e-18
Info: cfl dt = 0.0003970782814725768 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3440e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2633114587870315 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 226.83s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.0529231096816864, dt = 0.0003970782814725768 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 383.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-20,-1.3409953629357547e-18,-4.921347744078739e-19)
    sum a = (1.9932814416883866e-18,-2.8770813501485376e-17,-1.688111788117128e-17)
    sum e = 0.06836290214926347
    sum de = 1.7889335846010823e-18
Info: cfl dt = 0.0003905071221279496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4916e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.291127140199758 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 227.93s (max_walltime = 228.92s)  [SPH][rank=0]
---------------- t = 0.053320187963158974, dt = 0.0003905071221279496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 329.43 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-1.3530537648363684e-18,-4.975274985673637e-19)
    sum a = (3.909898212542604e-18,-2.3379130947976103e-17,-1.9418036038164222e-17)
    sum e = 0.06836289976284497
    sum de = -1.2468324983583301e-17
Info: cfl dt = 0.0003917279374590482 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5151e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2737357013503903 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 229.04s > 228.92s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 7):
   -> walltime = 229.038400531 >= 228.920816164
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000007.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (56.0%)
Info: dump to _to_trash/sod_128/dump/dump_0000007.sham                      [Shamrock Dump][rank=0]
              - took 7.42 ms, bandwidth = 1.97 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 229.038400531 -> 259.038400531

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.053710695085286926)
   -> iter = None (current = 188)
   -> walltime = 259.038400531 (current = 229.04985726200002)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 259.04s)      [SPH][rank=0]
---------------- t = 0.053710695085286926, dt = 0.0003917279374590482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 327.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974405e-19,-1.3608587374286164e-18,-5.056446576452335e-19)
    sum a = (-2.37660479585923e-18,-2.3077263806566565e-17,-1.8633377625605246e-17)
    sum e = 0.0683628999424523
    sum de = 6.2341624917916505e-18
Info: cfl dt = 0.0003931387920124587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5467e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.283104279452895 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.60s (niter = 6) global walltime = 230.15s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.054102423022745975, dt = 0.0003420214216984657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 335.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3176740299622746e-19,-1.368738577863476e-18,-5.119413615615233e-19)
    sum a = (3.679904200040098e-18,-2.220280740486433e-17,-2.2725623075358127e-17)
    sum e = 0.06836288428553136
    sum de = -6.830473686658678e-18
Info: cfl dt = 0.00039454532979494146 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5209e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1164477253352385 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 191                                                     [SPH][rank=0]
Info: time since start : 231.25396140400002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 2):
   -> t = 0.05444444444444444 >= 0.05444444444444444
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000002.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.05444444444444444 -> 0.08166666666666667

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.05444444444444444)
   -> iter = None (current = 190)
   -> walltime = 259.038400531 (current = 232.30076492900002)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 259.04s)      [SPH][rank=0]
---------------- t = 0.05444444444444444, dt = 0.00039454532979494146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1.44 us    (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        : 377.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.3775027946891839e-18,-5.21545491372252e-19)
    sum a = (-1.9932814416883866e-18,-1.7179175165633155e-17,-1.6206496167695826e-17)
    sum e = 0.06836290028887687
    sum de = -1.9786689647860456e-17
Info: cfl dt = 0.0003963072299571467 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2588e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2430243599250514 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.72s (niter = 5) global walltime = 233.44s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.054838989774239386, dt = 0.0003963072299571467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 355.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.593656445351658e-19,-1.3835015805784298e-18,-5.268207934598379e-19)
    sum a = (-5.098200610472219e-18,-2.177456334512659e-17,-1.996393566148114e-17)
    sum e = 0.06836290043611197
    sum de = -9.920449878242366e-18
Info: cfl dt = 0.0003982925049256355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5499e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2986401254088822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.055235297004196535, dt = 0.0003982925049256355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.6%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 384.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.2%)
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: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-1.3931174191138434e-18,-5.355033839457321e-19)
    sum a = (-2.8365928208642422e-18,-1.854296778664411e-17,-1.8880885478270995e-17)
    sum e = 0.06836290059616819
    sum de = 2.6508743117270583e-17
Info: cfl dt = 0.0003926366596443585 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5601e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3069158467991193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05563358950912217, dt = 0.0003926366596443585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 434.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-1.399794694826756e-18,-5.427580178944087e-19)
    sum a = (1.839952100020049e-18,-1.7730202487253744e-17,-1.971211830211113e-17)
    sum e = 0.06836289818389374
    sum de = 5.149960319306146e-18
Info: cfl dt = 0.0003938077395258336 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4486e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2693609283456193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.056026226168766534, dt = 0.0003938077395258336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 338.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.510273216205876e-20,-1.4065374799019536e-18,-5.504838005978354e-19)
    sum a = (-3.4882425229546765e-18,-2.0650946763213303e-17,-1.404127674210028e-17)
    sum e = 0.06836289794353631
    sum de = -1.6805133673525319e-18
Info: cfl dt = 0.0003951669480390784 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2966e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2471629364994286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.056420033908292366, dt = 0.0003951669480390784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.18 us    (2.2%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 356.25 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.2%)
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: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974404e-20,-1.415142602562112e-18,-5.55089350686699e-19)
    sum a = (7.819796425085208e-18,-1.8741217833879345e-17,-1.8351046997990763e-17)
    sum e = 0.06836289770350924
    sum de = -8.61940727125976e-18
Info: cfl dt = 0.0003967197926323624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5222e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2901665341991877 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.46s (niter = 4) global walltime = 239.00s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.056815200856331446, dt = 0.0003967197926323624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 433.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974405e-19,-1.4220351233225326e-18,-5.631424076942097e-19)
    sum a = (2.1082784479396394e-18,-1.174511741320578e-17,-1.2338092484046065e-17)
    sum e = 0.06836289747143705
    sum de = 1.431146867680866e-17
Info: cfl dt = 0.00039846707942686244 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2676e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.25138982795188 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.057211920648963806, dt = 0.00039846707942686244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 41.66 us   (9.3%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 389.29 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 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: 1.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271088e-20,-1.4253901385195602e-18,-5.6681821385761905e-19)
    sum a = (6.478164685487256e-18,-1.06006875710465e-17,-1.869489504400456e-17)
    sum e = 0.06836289724727956
    sum de = 2.4015078120553923e-17
Info: cfl dt = 0.0004004139417095512 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5106e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2989231523110576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.057610387728390666, dt = 0.0004004139417095512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.6%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 372.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2697586106909193e-19,-1.429334737977153e-18,-5.755400195748846e-19)
    sum a = (-6.324835343818918e-18,-9.674497490099721e-18,-1.4671335823647375e-17)
    sum e = 0.0683628970273855
    sum de = 2.168404344971009e-18
Info: cfl dt = 0.00040078577099618814 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5272e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3081605230974351 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05801080167010022, dt = 0.00040078577099618814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.9%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 342.54 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-1.4331623564306656e-18,-5.807096733215303e-19)
    sum a = (-7.704799418833955e-18,-1.2744004169328317e-17,-2.0332257016714833e-17)
    sum e = 0.06836289625277317
    sum de = -1.734723475976807e-18
Info: cfl dt = 0.00040242153224715556 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4352e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2933749272546262 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 243.47s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.05841158744109641, dt = 0.00040242153224715556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851845
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-1.4386089919806517e-18,-5.899795584928145e-19)
    sum a = (1.1499700625125306e-18,-6.767154557967618e-18,-1.8103866931834064e-17)
    sum e = 0.06836289583550184
    sum de = 6.0173220572945496e-18
Info: cfl dt = 0.00039962358760932 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5350e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3160748105852305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.058814008973343566, dt = 0.00039962358760932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (1.8%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 389.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851845
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0062238046984643e-19,-1.440403480583246e-18,-5.967640185130306e-19)
    sum a = (-2.8749251562813265e-18,-1.5119205193138582e-17,-1.92853092432249e-17)
    sum e = 0.06836289404115711
    sum de = 4.391018798566293e-18
Info: cfl dt = 0.000402707628185304 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3683e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.278011945426216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.059213632560952884, dt = 0.000402707628185304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 326.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.030181514334142e-19,-1.4480376609095366e-18,-6.047748987330911e-19)
    sum a = (2.568266472944652e-18,-1.3492457991915413e-17,-1.3232546514743205e-17)
    sum e = 0.0683628940436426
    sum de = 1.951563910473908e-18
Info: cfl dt = 0.00040596906047591535 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3475e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2842377169829338 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 246.82s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.05961634018913819, dt = 0.00040596906047591535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 355.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.906044179773648e-20,-1.4535287492410733e-18,-6.089357437289602e-19)
    sum a = (-1.5332934166833741e-18,-1.4817618806138837e-17,-1.3015727977938133e-17)
    sum e = 0.06836289408120719
    sum de = -1.1058862159352145e-17
Info: cfl dt = 0.0003851545202414921 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3201e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2898166798119517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0600223092496141, dt = 0.0003851545202414921 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.5%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 1.40 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 34.42 us   (7.8%)
   LB compute        : 384.09 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-20,-1.45894730935008e-18,-6.138498060745482e-19)
    sum a = (-3.334913181286339e-18,-1.2863193774765814e-17,-1.3563025497807771e-17)
    sum e = 0.06836288714964282
    sum de = 2.2063514210080015e-17
Info: cfl dt = 0.00038770711089930574 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3417e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2272998662694614 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.24s (niter = 2) global walltime = 249.09s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.0604074637698556, dt = 0.00038770711089930574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 375.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
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: 1.6422164351851845
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130426e-20,-1.4636990777358283e-18,-6.19295837628644e-19)
    sum a = (-3.756568870874267e-18,-1.361576532869654e-17,-1.6131453243826408e-17)
    sum e = 0.06836288710926158
    sum de = 6.505213034913027e-19
Info: cfl dt = 0.00039043113775286744 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5176e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2650282366000847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0607951708807549, dt = 0.00039043113775286744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 380.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851845
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5572511263190519e-19,-1.4692159018882627e-18,-6.261246557138812e-19)
    sum a = (-4.983203604220967e-19,-1.4163198993871778e-17,-1.3626164454304471e-17)
    sum e = 0.06836288712263189
    sum de = 2.097931203759451e-17
Info: cfl dt = 0.0003933408037509822 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4566e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.263571800727564 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 251.31s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06118560201850777, dt = 0.0003933408037509822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 376.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.343506757914312e-20,-1.4750368766513064e-18,-6.309085791849429e-19)
    sum a = (1.9166167708542177e-19,-1.449082067313967e-17,-1.5580561975691382e-17)
    sum e = 0.06836288722463738
    sum de = -7.318364664277155e-18
Info: cfl dt = 0.00039644223666780666 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4495e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2717896492897254 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 252.42s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06157894282225875, dt = 0.00039644223666780666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.1%)
   patch tree reduce : 1.58 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.2%)
   LB compute        : 506.45 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.64111930941358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.229004505276208e-20,-1.4807689458512487e-18,-6.374434950349649e-19)
    sum a = (3.9482305479596886e-18,-9.598806101219503e-18,-1.3086799535044659e-17)
    sum e = 0.06836288736714151
    sum de = 3.3610267347050637e-18
Info: cfl dt = 0.00039974201386288834 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4571e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.283112334182355 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 253.53s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06197538505892656, dt = 0.00039974201386288834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 377.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6378641010802464
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.007161313856643e-19,-1.483712187913913e-18,-6.4233552527582365e-19)
    sum a = (3.334913181286339e-18,-4.553462187630997e-18,-1.4624193691709127e-17)
    sum e = 0.0683628876777634
    sum de = -6.830473686658678e-18
Info: cfl dt = 0.00038664007586359036 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4863e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2988700338799275 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 254.64s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06237512707278945, dt = 0.00038664007586359036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 37.37 us   (9.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 326.93 us  (86.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6378641010802466
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2697586106909193e-19,-1.4838666028392992e-18,-6.48332559045858e-19)
    sum a = (1.1499700625125307e-19,-3.480755738693527e-18,-1.1895083392487718e-17)
    sum e = 0.06836288361582964
    sum de = 1.826880660638075e-17
Info: cfl dt = 0.0003891526622923987 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4859e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2562328047538394 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 255.75s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06276176714865304, dt = 0.0003891526622923987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 398.77 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.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: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-20,-1.4852750541284279e-18,-6.523006253190532e-19)
    sum a = (-3.3732455167034233e-18,8.073748147223392e-19,-1.6442231377157045e-17)
    sum e = 0.06836288387164448
    sum de = 4.391018798566293e-18
Info: cfl dt = 0.0003918374103899734 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5404e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2735927680307844 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 256.85s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06315091981094545, dt = 0.0003918374103899734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.6%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 374.80 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.2%)
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: 1.6333912037037033
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.461420287776341e-19,-1.4844327908990487e-18,-6.595637325372377e-19)
    sum a = (-2.069946112522555e-18,-2.3062290238044265e-18,-8.242748617583022e-18)
    sum e = 0.0683628842278822
    sum de = -2.710505431213761e-19
Info: cfl dt = 0.000394705461363211 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5780e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2887820870077336 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 257.95s (max_walltime = 259.04s)  [SPH][rank=0]
---------------- t = 0.06354275722133543, dt = 0.000394705461363211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 319.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0426291237310705e-19,-1.4856259971406693e-18,-6.613936572275093e-19)
    sum a = (5.0598682750551345e-18,-2.9932163476074852e-18,-1.2837790229330156e-17)
    sum e = 0.06836288469581349
    sum de = -1.1384122811097797e-18
Info: cfl dt = 0.0003977627933694862 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3915e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2662687169448643 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 259.07s > 259.04s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 8):
   -> walltime = 259.07116721 >= 259.038400531
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000008.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (55.2%)
Info: dump to _to_trash/sod_128/dump/dump_0000008.sham                      [Shamrock Dump][rank=0]
              - took 7.05 ms, bandwidth = 2.07 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 259.07116721 -> 289.07116721

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.06393746268269863)
   -> iter = None (current = 214)
   -> walltime = 289.07116721 (current = 259.082170083)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 289.07s)      [SPH][rank=0]
---------------- t = 0.06393746268269863, dt = 0.0003977627933694862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 346.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
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: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.186375381545137e-19,-1.4866975431380463e-18,-6.673391901481263e-19)
    sum a = (7.398140735497281e-18,-4.288130553415866e-18,-9.958584008280179e-18)
    sum e = 0.0683628852796688
    sum de = 3.469446951953614e-18
Info: cfl dt = 0.0004010157959456548 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4073e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2788052820710718 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.72s (niter = 6) global walltime = 260.20s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.06433522547606813, dt = 0.0004010157959456548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 365.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
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: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3478555442964167e-19,-1.4892477290270003e-18,-6.707242117002504e-19)
    sum a = (1.1499700625125306e-18,-2.1202573027574784e-18,-9.004922251390766e-18)
    sum e = 0.06836288597949944
    sum de = 3.577867169202165e-18
Info: cfl dt = 0.0003995285701587437 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3378e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2771559056874195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06473624127201379, dt = 0.0003995285701587437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.6%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 384.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 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: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.210333091180815e-19,-1.4895378419171198e-18,-6.742402880282133e-19)
    sum a = (-4.983203604220966e-18,-1.6060649597017452e-18,-1.0369170801640183e-17)
    sum e = 0.06836288547719815
    sum de = -1.8539857149502126e-17
Info: cfl dt = 0.0004026145373071459 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3476e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2741216132144113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06513576984217254, dt = 0.0004026145373071459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 409.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.98942740891943e-20,-1.4899730112522991e-18,-6.786713915772442e-19)
    sum a = (3.449910187537592e-19,1.2595765840957562e-18,-1.0019469073524303e-17)
    sum e = 0.06836288625050432
    sum de = 1.0191500421363742e-17
Info: cfl dt = 0.00040589974805164015 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5162e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3134283278393974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06553838437947969, dt = 0.00040589974805164015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 368.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.593656445351658e-20,-1.488620710845129e-18,-6.826181646053402e-19)
    sum a = (-4.216556895879279e-19,-4.710385185744686e-18,-1.0444579924904776e-17)
    sum e = 0.0683628871298422
    sum de = 1.1221492485224971e-17
Info: cfl dt = 0.00040938957568049613 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4871e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3190092826576187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06594428412753132, dt = 0.00040938957568049613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 379.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.174865281306388e-19,-1.4920412354044415e-18,-6.870591306709217e-19)
    sum a = (8.8164371459294e-19,-7.08968522393793e-18,-1.347752687036487e-17)
    sum e = 0.06836288811135344
    sum de = -2.0057740190981832e-17
Info: cfl dt = 0.0004130868118182209 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3316e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3027238737981266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06635367370321182, dt = 0.0004130868118182209 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 362.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2218431914195637e-19,-1.4953588166801635e-18,-6.932333059525523e-19)
    sum a = (4.944871268803882e-18,-7.144189013359096e-18,-1.0126257662828662e-17)
    sum e = 0.06836288919076625
    sum de = 4.87890977618477e-18
Info: cfl dt = 0.00041051169967846194 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3073e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.310142750216058 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.49s (niter = 4) global walltime = 266.95s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.06676676051503004, dt = 0.00041051169967846194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 347.82 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.198822990942066e-19,-1.4983441719042966e-18,-6.967027162245106e-19)
    sum a = (-2.4532694666933987e-18,-1.127719339688395e-17,-1.3275604952917487e-17)
    sum e = 0.06836288858086509
    sum de = -8.131516293641283e-19
Info: cfl dt = 0.000402154023658287 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4419e+04 | 82944 |      1 | 1.115e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3259520935161444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0671772722147085, dt = 0.000402154023658287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 384.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
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: 1.6420958719135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.773808022198331e-19,-1.5033696758395932e-18,-7.027072506945674e-19)
    sum a = (3.60323952920593e-18,-8.032421098101848e-18,-1.1349351935771005e-17)
    sum e = 0.06836288642114652
    sum de = 1.4582519219930035e-17
Info: cfl dt = 0.0004052305587392695 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5399e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3160542012280911 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06757942623836678, dt = 0.0004052305587392695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.5%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 388.18 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7374027031657247e-19,-1.5063175971424207e-18,-7.068581835164514e-19)
    sum a = (6.133173666733497e-19,-9.135973098195254e-18,-1.1739840287437543e-17)
    sum e = 0.06836288735676571
    sum de = 6.179952383167375e-18
Info: cfl dt = 0.0004084986650855903 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5070e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.320339194950409 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06798465679710605, dt = 0.0004084986650855903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.4%)
   patch tree reduce : 1.90 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 415.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
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: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-19,-1.5100890647139745e-18,-7.117628332912262e-19)
    sum a = (6.708158697989762e-18,-5.0598682750551345e-18,-9.766718455619903e-18)
    sum e = 0.06836288835707519
    sum de = -1.8431436932253575e-18
Info: cfl dt = 0.0004119651346576455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4624e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323083482915348 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 271.38s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.06839315546219164, dt = 0.0004119651346576455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 382.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229004505276208e-20,-1.511619176247347e-18,-7.153336229881524e-19)
    sum a = (-3.2965808458692543e-18,-3.976979799522502e-19,-1.2118303259440163e-17)
    sum e = 0.06836288941184457
    sum de = -1.1872013788716274e-17
Info: cfl dt = 0.0004156359793559368 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4694e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3355652435363972 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06880512059684929, dt = 0.0004156359793559368 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.09 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 376.50 us  (83.2%)
   LB move op cnt    : 0
   LB apply          : 59.69 us   (13.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6415718646230135e-19,-1.5106318565729079e-18,-7.208789931812744e-19)
    sum a = (1.4949610812662899e-18,1.0870810747188767e-19,-1.3771217827442915e-17)
    sum e = 0.0683628905140076
    sum de = -4.607859233063394e-18
Info: cfl dt = 0.0004118153126531514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3667e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3289351536400054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06922075657620523, dt = 0.0004118153126531514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 366.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406633e-19,-1.5108377431400896e-18,-7.26917080254185e-19)
    sum a = (9.008098823014823e-18,-9.582784382900643e-18,-8.37372723574132e-18)
    sum e = 0.06836288951738992
    sum de = 3.7947076036992655e-19
Info: cfl dt = 0.00040623272679574855 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5274e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3454399649900812 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 274.72s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.06963257188885838, dt = 0.00040623272679574855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 340.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-1.5162796994499124e-18,-7.292160992470913e-19)
    sum a = (-3.449910187537592e-19,-3.628395124323391e-18,-1.431028364583418e-17)
    sum e = 0.06836288801135051
    sum de = -1.5720931501039814e-18
Info: cfl dt = 0.00040923642514145074 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5344e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.328439141934307 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07003880461565413, dt = 0.00040923642514145074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 352.41 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.235228309974672e-19,-1.5166072462613376e-18,-7.362564331888594e-19)
    sum a = (6.899820375075184e-19,-7.893166910844472e-18,-1.3336371203982868e-17)
    sum e = 0.06836288882214223
    sum de = 3.3610267347050637e-18
Info: cfl dt = 0.0004124198243579071 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4414e+04 | 82944 |      1 | 1.115e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3217419580377754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07044804104079559, dt = 0.0004124198243579071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.5%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 419.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7311788984672605e-19,-1.5206688267230112e-18,-7.415371555731325e-19)
    sum a = (5.098200610472219e-18,-8.107887883454233e-18,-1.3066107835388199e-17)
    sum e = 0.06836288964217303
    sum de = 4.553649124439119e-18
Info: cfl dt = 0.00041579011587032356 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5144e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3450913082187554 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 278.04s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.0708604608651535, dt = 0.00041579011587032356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 370.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-1.524028521160202e-18,-7.469174479386987e-19)
    sum a = (3.1432515042009172e-18,-1.0091586241288348e-17,-1.0121114542982817e-17)
    sum e = 0.06836289047382978
    sum de = -6.667843360785852e-18
Info: cfl dt = 0.0004105154357772187 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3262e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3221245954649232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07127625098102383, dt = 0.0004105154357772187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.7%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 398.44 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.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: 1.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.528810704607011e-18,-7.504773595123059e-19)
    sum a = (-2.606598808361736e-18,-1.1815043978204914e-17,-1.1345648376896411e-17)
    sum e = 0.06836288887056137
    sum de = 1.577514160966409e-17
Info: cfl dt = 0.0004118838036142219 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5136e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3387392190777045 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 280.28s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07168676641680105, dt = 0.0004118838036142219 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1.51 us    (0.3%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 416.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.389547158869308e-19,-1.533845567022634e-18,-7.553650189965638e-19)
    sum a = (-4.369886237547617e-18,-1.216392812477447e-17,-1.2890685217732175e-17)
    sum e = 0.06836288905331277
    sum de = 9.215718466126788e-19
Info: cfl dt = 0.0004083818100332644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5164e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.343702582267035 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 281.39s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07209865022041527, dt = 0.0004083818100332644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 351.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6407696759259263
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-1.5390395236038063e-18,-7.609543225668149e-19)
    sum a = (-1.0311398227195691e-17,-1.0977722026437978e-17,-1.500362484182299e-17)
    sum e = 0.06836288786072968
    sum de = 1.0137290312739466e-17
Info: cfl dt = 0.0004114287585324433 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5016e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.329648312633162 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 282.49s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07250703203044853, dt = 0.0004114287585324433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 378.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6383584104938271
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.612327859447051e-19,-1.5434473678375578e-18,-7.675609540356156e-19)
    sum a = (9.583083854271088e-19,-1.0732155502672282e-17,-1.2165468490091611e-17)
    sum e = 0.068362888410957
    sum de = -2.656295322589486e-18
Info: cfl dt = 0.0004146506647568828 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0253e+04 | 82944 |      1 | 1.181e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.254526182120072 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 283.67s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07291846078898097, dt = 0.0004146506647568828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 388.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6360677083333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1499700625125307e-19,-1.547780344228698e-18,-7.720038795963519e-19)
    sum a = (-3.564907193788845e-18,-1.2805096328899297e-17,-1.3819400074710073e-17)
    sum e = 0.06836288895469514
    sum de = 1.734723475976807e-17
Info: cfl dt = 0.0004109548827610048 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3274e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3187103755878185 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 284.81s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07333311145373785, dt = 0.0004109548827610048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 350.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6338975694444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.102054643241175e-19,-1.553629394432721e-18,-7.780540736416614e-19)
    sum a = (-6.7848233688239304e-18,-7.086091567492579e-18,-1.0885658588338515e-17)
    sum e = 0.06836288757047469
    sum de = 8.782037597132586e-18
Info: cfl dt = 0.0004121681496716774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4426e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3274988783413968 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 285.92s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07374406633649885, dt = 0.0004121681496716774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 383.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.120726057336568e-19,-1.5551454682456036e-18,-7.819299245642342e-19)
    sum a = (-4.2932215667134474e-18,-5.291659115780317e-18,-1.1712094096822825e-17)
    sum e = 0.06836288748639807
    sum de = 6.071532165918825e-18
Info: cfl dt = 0.00040614954712516404 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3798e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3201922334070035 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 287.05s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.07415623448617054, dt = 0.00040614954712516404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.3%)
   LB compute        : 416.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.5571013906338288e-18,-7.868722744091103e-19)
    sum a = (-5.174865281306388e-18,-1.1558696485103162e-17,-9.120152962745432e-18)
    sum e = 0.06836288545004071
    sum de = -1.3552527156068805e-18
Info: cfl dt = 0.00040900197777216866 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4485e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3130267751611384 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 288.16s (max_walltime = 289.07s)  [SPH][rank=0]
---------------- t = 0.0745623840332957, dt = 0.00040900197777216866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 384.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.102054643241175e-19,-1.5628849314755668e-18,-7.900717626960512e-19)
    sum a = (-8.318116785507305e-18,-1.2376253326420665e-17,-1.4578352566421107e-17)
    sum e = 0.06836288574609554
    sum de = 1.8919327909872052e-17
Info: cfl dt = 0.0004120361387287608 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3712e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3085194304609513 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 289.29s > 289.07s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 9):
   -> walltime = 289.289126 >= 289.07116721
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000009.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (54.2%)
Info: dump to _to_trash/sod_128/dump/dump_0000009.sham                      [Shamrock Dump][rank=0]
              - took 7.76 ms, bandwidth = 1.88 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 289.289126 -> 319.289126

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.07497138601106787)
   -> iter = None (current = 241)
   -> walltime = 319.289126 (current = 289.300782992)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 319.29s)      [SPH][rank=0]
---------------- t = 0.07497138601106787, dt = 0.0004120361387287608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 368.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.98942740891943e-19,-1.5684906611911023e-18,-7.972106883138299e-19)
    sum a = (-5.0215359396380506e-18,-1.2409494648540169e-17,-8.746151744470394e-18)
    sum e = 0.06836288605791273
    sum de = -1.6479873021779667e-17
Info: cfl dt = 0.0004140757990505985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5088e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3428304394191306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.63s (niter = 6) global walltime = 290.41s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.07538342214979663, dt = 0.0004140757990505985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-19,-1.5733383540001965e-18,-7.996182310555514e-19)
    sum a = (-3.1815838396180015e-18,-9.54999226783681e-18,-8.497445411568399e-18)
    sum e = 0.0683628860864816
    sum de = -6.0173220572945496e-18
Info: cfl dt = 0.0004153631142450779 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5041e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3486334734515344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07579749794884723, dt = 0.0004153631142450779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.8%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 365.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632921006944444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.276919924547563e-19,-1.5768571426029365e-18,-8.030955916230632e-19)
    sum a = (2.031613777105471e-18,-5.6936994306040335e-18,-8.443240737629608e-18)
    sum e = 0.06836288590217132
    sum de = 2.0166160408230382e-17
Info: cfl dt = 0.00041685731792529923 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3447e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3240917616493346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0762128610630923, dt = 0.00041685731792529923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 358.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.103929661557534e-20,-1.5783077070535343e-18,-8.066103256861958e-19)
    sum a = (-3.3732455167034233e-18,-1.0345837434796978e-17,-4.4878079768176144e-18)
    sum e = 0.06836288576290908
    sum de = -6.1257422745431e-18
Info: cfl dt = 0.0004064725517218496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4647e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3505776746338447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0766297183810176, dt = 0.0004064725517218496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 390.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
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: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.360303153693346e-19,-1.583426795792095e-18,-8.075907395940303e-19)
    sum a = (-1.724955093768796e-18,-9.31835116279685e-18,-5.244184653400529e-18)
    sum e = 0.06836288260184781
    sum de = -2.8731357570865868e-18
Info: cfl dt = 0.000409283699146058 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2273e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2750417255159563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07703619093273946, dt = 0.000409283699146058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 355.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.42066618236163e-19,-1.5868800750325502e-18,-8.0991110434955425e-19)
    sum a = (-1.303299404180868e-18,-9.091276996156191e-18,-8.993924341907057e-18)
    sum e = 0.06836288282510183
    sum de = -1.0354130747236567e-17
Info: cfl dt = 0.0004122727490254578 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2879e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.294623753579394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07744547463188552, dt = 0.0004122727490254578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
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: 1.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.5905579578008397e-18,-8.143545023771263e-19)
    sum a = (-7.12981438757769e-18,-1.1662912522018361e-17,-7.046496553891388e-18)
    sum e = 0.0683628830900439
    sum de = -9.595189226496714e-18
Info: cfl dt = 0.00041522800218015814 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4628e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3353692343639338 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.49s (niter = 4) global walltime = 297.16s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.07785774738091097, dt = 0.00041522800218015814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 322.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.887372765678255e-19,-1.5960233103114789e-18,-8.168805873023244e-19)
    sum a = (-3.4882425229546765e-18,-1.4168664346382417e-17,-8.378794119402927e-18)
    sum e = 0.06836288335848649
    sum de = 5.854691731421724e-18
Info: cfl dt = 0.00040254482652259506 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3068e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3168301677333294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07827297538309114, dt = 0.00040254482652259506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 358.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.666467083416871e-20,-1.6019285113974603e-18,-8.205277473635066e-19)
    sum a = (-4.714877256301376e-18,-1.0335505672516592e-17,-5.504414858184073e-18)
    sum e = 0.06836287980847136
    sum de = -6.396792817664476e-18
Info: cfl dt = 0.00040523874048481624 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5185e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.313596074743903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07867552020961373, dt = 0.00040523874048481624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.5%)
   patch tree reduce : 1.57 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 440.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.6056812620083613e-18,-8.221972685749033e-19)
    sum a = (1.6482904229346272e-18,-1.1629521464213635e-17,-6.157369390283499e-18)
    sum e = 0.06836288007200082
    sum de = -4.933119884809045e-18
Info: cfl dt = 0.00040811259158802084 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4238e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3057379127634776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07908075895009854, dt = 0.00040811259158802084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.5%)
   patch tree reduce : 1.96 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 420.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
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: 1.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-20,-1.6109313694714923e-18,-8.248125370462912e-19)
    sum a = (-3.1049191687838326e-18,-1.1767839803438368e-17,-8.405711529183591e-18)
    sum e = 0.06836288039554482
    sum de = -9.215718466126788e-19
Info: cfl dt = 0.00041117722121446275 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2270e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2801416821700307 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.37s (niter = 3) global walltime = 301.66s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.07948887154168656, dt = 0.00041117722121446275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 322.74 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.641854745370371
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.899820375075184e-19,-1.6154795909101405e-18,-8.287234452923174e-19)
    sum a = (2.37660479585923e-18,-1.60518526255106e-17,-6.273119836607076e-18)
    sum e = 0.06836288078999499
    sum de = 4.2825985813177425e-18
Info: cfl dt = 0.00041443853444921914 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4496e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3294712657866998 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07990004876290102, dt = 0.00041443853444921914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 387.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0728106380652126e-19,-1.6229382997303106e-18,-8.308995208275953e-19)
    sum a = (-7.244811393828942e-18,-1.4270114952361152e-17,-8.245555474655879e-18)
    sum e = 0.06836288126520641
    sum de = -6.396792817664476e-18
Info: cfl dt = 0.000417905252457219 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3151e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3158248673308055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08031448729735025, dt = 0.000417905252457219 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.8%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 390.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1499700625125307e-19,-1.6285814633671517e-18,-8.347722132341035e-19)
    sum a = (-5.3281946229747256e-18,-8.280444222953235e-18,-9.955798597256736e-18)
    sum e = 0.06836288182532749
    sum de = 2.439454888092385e-18
Info: cfl dt = 0.0004039330946645456 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4474e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3508358744086557 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.37s (niter = 3) global walltime = 305.03s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08073239254980746, dt = 0.0004039330946645456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 354.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.389547158869308e-19,-1.6308930080077816e-18,-8.391150091385316e-19)
    sum a = (-4.2932215667134474e-18,-5.5695498305935255e-18,-1.042425138338123e-17)
    sum e = 0.0683628782612395
    sum de = 6.342582709040201e-18
Info: cfl dt = 0.00040664809622216843 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3342e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2858253919040679 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08113632564447201, dt = 0.00040664809622216843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.8%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 362.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.6328021379943747e-18,-8.434727442912394e-19)
    sum a = (-1.5716257521004586e-18,-9.684024423072035e-18,-9.45167070580591e-18)
    sum e = 0.0683628787095806
    sum de = -2.439454888092385e-18
Info: cfl dt = 0.0004095428540535217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4577e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3162564691979213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08154297374069418, dt = 0.00012369292597248782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.9%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 353.62 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4853779974120188e-19,-1.6344679474924803e-18,-8.443831901714396e-19)
    sum a = (-3.756568870874267e-18,-9.89558222933146e-18,-1.1095746888754538e-17)
    sum e = 0.0683628354667832
    sum de = -7.48099499014998e-18
Info: cfl dt = 0.0004105098516158787 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4490e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.39990934501646125 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 2.25s (niter = 2) global walltime = 308.39s (max_walltime = 319.29s)  [SPH][rank=0]
Info: iteration since start : 259                                                     [SPH][rank=0]
Info: time since start : 308.38656259100003 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 3):
   -> t = 0.08166666666666667 >= 0.08166666666666667
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000003.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.08166666666666667 -> 0.10888888888888888

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.08166666666666667)
   -> iter = None (current = 258)
   -> walltime = 319.289126 (current = 309.013919894)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 319.29s)      [SPH][rank=0]
---------------- t = 0.08166666666666667, dt = 0.0004105098516158787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.3%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 413.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
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: 1.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.62477546884398e-20,-1.6390723198130872e-18,-8.48969122651419e-19)
    sum a = (-9.966407208441933e-19,-1.0008033728933922e-17,-1.0465464917070435e-17)
    sum e = 0.0683628794479299
    sum de = 1.0516761073109393e-17
Info: cfl dt = 0.0004135979355694343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4933e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3350926783295805 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 310.12s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08207717651828254, dt = 0.0004135979355694343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 351.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.103929661557534e-20,-1.6429467306682319e-18,-8.532990334782012e-19)
    sum a = (7.934793431336462e-18,-5.5692316422624265e-18,-1.0433700226776781e-17)
    sum e = 0.06836288004909805
    sum de = 2.347297703431117e-17
Info: cfl dt = 0.000416943973374494 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2135e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2949097017829392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08249077445385197, dt = 0.000416943973374494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.8%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 351.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8811489609797907e-19,-1.6443972951188296e-18,-8.576017336806627e-19)
    sum a = (3.2965808458692543e-18,-1.0367474241311699e-17,-9.6953662931274e-18)
    sum e = 0.06836288075388824
    sum de = -9.432558900623889e-18
Info: cfl dt = 0.0004094389844963649 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4570e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3494494254941187 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 312.39s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08290771842722647, dt = 0.0004094389844963649 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 364.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6394434799382718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.874925156281327e-20,-1.6495818932196756e-18,-8.614147285896252e-19)
    sum a = (-3.25824851045217e-18,-1.3665103236977515e-17,-9.17504592359583e-18)
    sum e = 0.06836287892211285
    sum de = 9.378348791999613e-18
Info: cfl dt = 0.0004123529968338516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4305e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.320457995215877 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 313.50s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08331715741172284, dt = 0.0004123529968338516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 384.98 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.38 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.103929661557534e-20,-1.6558895089596937e-18,-8.650340609064445e-19)
    sum a = (4.024895218793857e-18,-8.548634872908092e-18,-1.234913475150185e-17)
    sum e = 0.06836287956811221
    sum de = -7.914675859144182e-18
Info: cfl dt = 0.0004154557707410302 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5007e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3424160630644966 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 314.61s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.0837295104085567, dt = 0.0004154557707410302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 40.44 us   (10.2%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 336.72 us  (85.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4436863828391274e-19,-1.6585286004117489e-18,-8.708893093890184e-19)
    sum a = (-1.3416317395979524e-18,-6.242143811654525e-18,-1.1581065143524e-17)
    sum e = 0.06836288028187266
    sum de = -1.6642503347652493e-17
Info: cfl dt = 0.00041875644536188073 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5282e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.357485351475237 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 315.71s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08414496617929773, dt = 0.00041875644536188073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 399.09 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.36 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.827009737009971e-19,-1.6609337298556432e-18,-8.75553015992545e-19)
    sum a = (2.3382724604421455e-18,-1.2431955001323616e-17,-1.7242289644360437e-17)
    sum e = 0.06836288106409184
    sum de = 6.451002926288751e-18
Info: cfl dt = 0.0004183935940217134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2353e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3150365106680593 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 316.86s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08456372262465961, dt = 0.0004183935940217134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 354.99 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.414442377663165e-19,-1.6674004397612108e-18,-8.839211082227064e-19)
    sum a = (4.2932215667134474e-18,-1.2843129192945935e-17,-1.7931847638204215e-17)
    sum e = 0.06836288099289456
    sum de = 1.3552527156068805e-18
Info: cfl dt = 0.0004077396214077802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2724e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.320631354535373 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 318.00s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.08498211621868132, dt = 0.0004077396214077802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 432.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0665868333667484e-19,-1.6722106986489992e-18,-8.914128679208793e-19)
    sum a = (-8.203119779256051e-18,-9.821463065146082e-18,-1.3386421106942926e-17)
    sum e = 0.06836287850526507
    sum de = 1.3660947373317356e-17
Info: cfl dt = 0.0004104947709076251 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3132e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.294223846629074 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 319.14s (max_walltime = 319.29s)  [SPH][rank=0]
---------------- t = 0.0853898558400891, dt = 0.0004104947709076251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 1.07 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 415.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
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: 1.6331500771604939
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-20,-1.675954090779574e-18,-8.960296784927097e-19)
    sum a = (2.8749251562813265e-18,-1.3160231940326913e-17,-1.3417459486175824e-17)
    sum e = 0.0683628791666091
    sum de = -3.0899761915836876e-18
Info: cfl dt = 0.00041343331654048664 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3829e+04 | 82944 |      1 | 1.123e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3153742828663941 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 320.26s > 319.29s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 10):
   -> walltime = 320.26189699400004 >= 319.289126
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000010.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (56.1%)
Info: dump to _to_trash/sod_128/dump/dump_0000010.sham                      [Shamrock Dump][rank=0]
              - took 5.23 ms, bandwidth = 2.79 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 320.26189699400004 -> 350.26189699400004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.08580035061099672)
   -> iter = None (current = 268)
   -> walltime = 350.26189699400004 (current = 320.27091000800004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 350.26s)      [SPH][rank=0]
---------------- t = 0.08580035061099672, dt = 0.00041343331654048664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (0.9%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 374.09 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.20410928648235e-19,-1.6818592918655554e-18,-9.01658700666603e-19)
    sum a = (4.523215579215954e-18,-1.1687225853906443e-17,-1.7636101297674945e-17)
    sum e = 0.06836287987537296
    sum de = -4.119968255444917e-18
Info: cfl dt = 0.0004165652423391906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4956e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3450180565181895 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.65s (niter = 6) global walltime = 321.38s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.08621378392753722, dt = 0.0004165652423391906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 379.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-1.6865198150681208e-18,-9.098039304341874e-19)
    sum a = (-8.049790437587714e-18,-1.7455736976240013e-17,-1.8401126382744677e-17)
    sum e = 0.06836288063085648
    sum de = 3.2526065174565133e-18
Info: cfl dt = 0.00041789196095540194 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3069e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3210973495990517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0866303491698764, dt = 0.00041789196095540194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.9%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 376.37 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0541392239698198e-19,-1.6950079567241989e-18,-9.176100642717876e-19)
    sum a = (-8.241452114673136e-18,-1.3116602705045065e-17,-1.8820014349316326e-17)
    sum e = 0.06836288095524294
    sum de = 1.4203048459560108e-17
Info: cfl dt = 0.00041900717283424105 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2589e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3165999235805714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0870482411308318, dt = 0.00041900717283424105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (1.8%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.12 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-20,-1.6998743664939458e-18,-9.256256704647032e-19)
    sum a = (-2.1082784479396394e-18,-1.1072981997680776e-17,-1.5936626320043505e-17)
    sum e = 0.06836288122014528
    sum de = -1.4582519219930035e-17
Info: cfl dt = 0.00041010218536814127 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4866e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3615190077583137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08746724830366605, dt = 0.00041010218536814127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.5%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 424.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8749251562813265e-19,-1.7035241738212562e-18,-9.314929638833608e-19)
    sum a = (3.3732455167034233e-18,-8.635219532888283e-18,-1.7518839317674987e-17)
    sum e = 0.06836287910115456
    sum de = -3.686287386450715e-18
Info: cfl dt = 0.00041292260580169557 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1699e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2762174890784372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0878773504890342, dt = 0.00041292260580169557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.3%)
   patch tree reduce : 1.58 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 474.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.633029513888889
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8207859323115067e-19,-1.7069961700223642e-18,-9.390734054425385e-19)
    sum a = (8.433113791758558e-19,-1.2402251184767506e-17,-1.1493305121311402e-17)
    sum e = 0.06836287972816063
    sum de = -1.4582519219930035e-17
Info: cfl dt = 0.00041592607108279184 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3839e+04 | 82944 |      1 | 1.123e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323341992072787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08829027309483589, dt = 0.00041592607108279184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.3%)
   LB compute        : 410.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
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: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9707559948240377e-19,-1.7125738242969203e-18,-9.426057415403124e-19)
    sum a = (2.721595814612989e-18,-9.332388883286504e-18,-2.23171779491341e-17)
    sum e = 0.06836288038263781
    sum de = -6.451002926288751e-18
Info: cfl dt = 0.0004179100373725607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3247e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.322274212373997 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.52s (niter = 4) global walltime = 328.18s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.08870619916591868, dt = 0.0004179100373725607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 372.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888884
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.102054643241175e-19,-1.7155404625604008e-18,-9.541548284818007e-19)
    sum a = (7.05314971674352e-18,-9.91089270314551e-18,-1.8840729571362865e-17)
    sum e = 0.06836288078210002
    sum de = 1.2793585635328952e-17
Info: cfl dt = 0.00041903621180925776 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5240e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3647444758782186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08912410920329124, dt = 0.00041903621180925776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 402.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.324835343818918e-19,-1.720219702723619e-18,-9.613397673305367e-19)
    sum a = (1.724955093768796e-18,-9.494365460776469e-18,-2.0266272663023406e-17)
    sum e = 0.06836288095909665
    sum de = -5.800481622797449e-18
Info: cfl dt = 0.00040808960074303956 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4000e+04 | 82944 |      1 | 1.121e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3458552839205624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0895431454151005, dt = 0.00040808960074303956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 340.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-1.7241783399017017e-18,-9.699480521509213e-19)
    sum a = (3.986562883376773e-18,-1.1033049362127872e-17,-1.778045100525503e-17)
    sum e = 0.06836287828372264
    sum de = -2.710505431213761e-19
Info: cfl dt = 0.000410749194403086 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.8019e+04 | 82944 |      1 | 1.219e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.204763256412869 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08995123501584354, dt = 0.000410749194403086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 381.64 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.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: 1.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6832634791959046e-19,-1.7287078443796971e-18,-9.766652835373315e-19)
    sum a = (1.1499700625125306e-18,-1.6227305414670635e-17,-1.3928288479919376e-17)
    sum e = 0.06836287877154172
    sum de = -1.474514954580286e-17
Info: cfl dt = 0.00041358718912321165 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1358e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2721400221374215 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 332.79s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09036198421024663, dt = 0.00041358718912321165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 384.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.126949862035032e-19,-1.736503458491619e-18,-9.81652111975629e-19)
    sum a = (-5.0215359396380506e-18,-7.645054880429984e-18,-9.11258468302279e-18)
    sum e = 0.06836287927782783
    sum de = 2.4936649967166602e-18
Info: cfl dt = 0.00041661319429516316 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4983e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3460077044581573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09077557139936984, dt = 0.00041661319429516316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 376.87 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084353e-19,-1.737879155099605e-18,-9.844609513003864e-19)
    sum a = (-2.8749251562813265e-18,-1.3838871499678789e-17,-1.322282277901269e-17)
    sum e = 0.0683628798038225
    sum de = 2.3689817468808272e-17
Info: cfl dt = 0.000418570759857178 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3583e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3305472764846447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.091192184593665, dt = 0.000418570759857178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 413.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6417341820987652
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.360303153693346e-19,-1.745169411273899e-18,-9.908625398389957e-19)
    sum a = (3.3732455167034233e-18,-8.210307092146756e-18,-1.1224160471585262e-17)
    sum e = 0.06836288006665445
    sum de = 7.047314121155779e-19
Info: cfl dt = 0.0004080733588705443 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4741e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3578281641917338 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.40s (niter = 3) global walltime = 336.14s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09161075535352219, dt = 0.0004080733588705443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 330.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6417341820987652
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-19,-1.746779069890046e-18,-9.950300113697757e-19)
    sum a = (-1.6099580875175429e-18,-1.0919325109201014e-17,-7.956167415847043e-18)
    sum e = 0.06836287743198115
    sum de = 1.3335686721571705e-17
Info: cfl dt = 0.00041072141986713673 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1593e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2680128882612602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09201882871239273, dt = 0.00041072141986713673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.9%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 327.82 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
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: 1.6417341820987652
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.456133992236056e-19,-1.7521227621564415e-18,-9.97600974100465e-19)
    sum a = (8.8164371459294e-19,-1.3658889206040762e-17,-1.1162524464952098e-17)
    sum e = 0.06836287781594402
    sum de = -1.0408340855860843e-17
Info: cfl dt = 0.00041355020935421484 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4040e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3198691829462332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09242955013225986, dt = 0.00041355020935421484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.0%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 337.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (58.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6417341820987652
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,-1.7586924153455998e-18,-1.0029064284088595e-18)
    sum a = (-6.7464910334068465e-18,-1.2692644829296833e-17,-1.554683625947456e-17)
    sum e = 0.06836287821997866
    sum de = 8.077306185017008e-18
Info: cfl dt = 0.0004165696738541779 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3131e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3126440073977732 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 339.55s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09284310034161407, dt = 0.0004165696738541779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 392.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6417341820987652
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.456133992236056e-19,-1.7633155046268597e-18,-1.0102308916550261e-18)
    sum a = (8.969766487597738e-18,-5.729336523687104e-18,-1.0522059372589938e-17)
    sum e = 0.06836287864839316
    sum de = -1.4040418133687282e-17
Info: cfl dt = 0.0004197856571665267 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4581e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3484483641878997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09325967001546824, dt = 0.0004197856571665267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 393.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.633885513117284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130426e-20,-1.7646444088332138e-18,-1.0136044305413037e-18)
    sum a = (4.791541927135544e-18,-3.0972826488374605e-18,-1.1167380210536953e-17)
    sum e = 0.06836287910558021
    sum de = 1.2739375526704677e-17
Info: cfl dt = 0.0004214218821867546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2859e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.327487044831794 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 341.81s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09367945567263476, dt = 0.0004214218821867546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.6%)
   patch tree reduce : 1.61 us    (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        : 357.57 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6328004436728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-20,-1.765524105983899e-18,-1.018481082251744e-18)
    sum a = (9.199760500100246e-19,-9.532323456980496e-18,-7.885295169143123e-18)
    sum e = 0.06836287919201099
    sum de = 7.643625316022806e-18
Info: cfl dt = 0.00040847462268998576 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0880e+04 | 82944 |      1 | 1.170e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2964565082459916 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 342.98s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09410087755482152, dt = 0.00040847462268998576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 371.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.7708397228093148e-18,-1.0209635070787581e-18)
    sum a = (1.8782844354371334e-18,-1.0476706423681867e-17,-1.0985616088094639e-17)
    sum e = 0.06836287598396021
    sum de = 9.64939933512099e-18
Info: cfl dt = 0.000411135479802347 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4181e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3151541871259091 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 344.10s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09450935217751151, dt = 0.000411135479802347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 393.12 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.25 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7374027031657247e-19,-1.7751633407201283e-18,-1.026060394745647e-18)
    sum a = (4.523215579215954e-18,-3.2973295242953694e-18,-7.475252647917824e-18)
    sum e = 0.068362876293532
    sum de = -1.0408340855860843e-17
Info: cfl dt = 0.0004139759357296454 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4275e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3254024156391822 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 345.21s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09492048765731385, dt = 0.0004139759357296454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 349.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.779094317738616e-19,-1.7745737564595628e-18,-1.0284521867489639e-18)
    sum a = (-1.0963047929286125e-17,-8.621331548083851e-18,-1.3161335570911101e-17)
    sum e = 0.06836287664075905
    sum de = 6.451002926288751e-18
Info: cfl dt = 0.00041700667947264735 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3001e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3116623363965085 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 346.35s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.0953344635930435, dt = 0.00041700667947264735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 384.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0541392239698198e-19,-1.779290430544087e-18,-1.035118238075977e-18)
    sum a = (-1.5716257521004586e-18,-7.470013864404314e-18,-9.41324644175815e-18)
    sum e = 0.06836287703018258
    sum de = 5.149960319306146e-18
Info: cfl dt = 0.0004202338603968428 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4443e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3473573498329154 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 347.47s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09575147027251614, dt = 0.0004202338603968428 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 411.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.293716320326597e-19,-1.782640766500951e-18,-1.0383150778689076e-18)
    sum a = (-1.839952100020049e-18,-1.0106559809810647e-17,-8.998628404770134e-18)
    sum e = 0.06836287747365494
    sum de = 5.963111948670274e-19
Info: cfl dt = 0.0004089086512231111 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4558e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3598940224499954 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 348.58s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.09617170413291298, dt = 0.0004089086512231111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 341.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.091482052160606e-19,-1.787656911955921e-18,-1.0418746378796348e-18)
    sum a = (1.954949106271302e-18,-7.818598539603424e-18,-7.906171785080117e-18)
    sum e = 0.06836287472703231
    sum de = 2.168404344971009e-18
Info: cfl dt = 0.0004116264275523417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2281e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2828192523319673 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 349.73s (max_walltime = 350.26s)  [SPH][rank=0]
---------------- t = 0.0965806127841361, dt = 0.0004116264275523417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 384.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.1%)
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: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.060363028668284e-19,-1.790202418604712e-18,-1.0449020409555683e-18)
    sum a = (-2.37660479585923e-18,-4.96733162158733e-18,-1.0185157191595819e-17)
    sum e = 0.0683628750806667
    sum de = -1.6263032587282567e-19
Info: cfl dt = 0.0004145281425337899 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3394e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3112376535976655 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 350.86s > 350.26s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 11):
   -> walltime = 350.860496339 >= 350.26189699400004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000011.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (54.8%)
Info: dump to _to_trash/sod_128/dump/dump_0000011.sham                      [Shamrock Dump][rank=0]
              - took 5.06 ms, bandwidth = 2.89 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 350.860496339 -> 380.860496339

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.09699223921168844)
   -> iter = None (current = 295)
   -> walltime = 380.860496339 (current = 350.86942472100003)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 380.86s)      [SPH][rank=0]
---------------- t = 0.09699223921168844, dt = 0.0004145281425337899 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 358.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.551964830778767e-19,-1.79165298305531e-18,-1.0496163075307556e-18)
    sum a = (-6.7464910334068465e-18,-6.358076665938421e-18,-7.446524225915733e-18)
    sum e = 0.06836287548372678
    sum de = -9.920449878242366e-18
Info: cfl dt = 0.0004176236584334773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3779e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3274029907890725 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.75s (niter = 6) global walltime = 351.99s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.09740676735422223, dt = 0.0004176236584334773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 389.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
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: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.7942452821057328e-18,-1.0521576832217656e-18)
    sum a = (-2.6832634791959047e-18,-6.2035494387883e-18,-7.97231101773272e-18)
    sum e = 0.06836287594349845
    sum de = 9.053088140253962e-18
Info: cfl dt = 0.00042091279699286587 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2503e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3141946821245054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0978243910126557, dt = 0.00042091279699286587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 374.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1499700625125307e-19,-1.796743996352891e-18,-1.0555946770766433e-18)
    sum a = (1.0349730562612776e-18,-8.436108505463017e-19,-8.784519866963715e-18)
    sum e = 0.06836287646902194
    sum de = 8.944667923005412e-18
Info: cfl dt = 0.00040724452301200097 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2820e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.330325320562376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09824530380964858, dt = 0.00040724452301200097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 430.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
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: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.545741026080303e-19,-1.7962105629742842e-18,-1.0593541726251756e-18)
    sum a = (4.063227554210942e-18,-8.180659426472604e-18,-9.804538763672354e-18)
    sum e = 0.06836287336399251
    sum de = -3.74049749507499e-18
Info: cfl dt = 0.00040982807830272676 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2221e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2765483065185712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09865254833266057, dt = 0.00040982807830272676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (1.8%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 378.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 6.58 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.210333091180815e-19,-1.800945954019461e-18,-1.0635395437349421e-18)
    sum a = (-2.1466107833567237e-18,-1.8675034661010785e-18,-1.2471062548872243e-17)
    sum e = 0.06836287376865817
    sum de = 3.0899761915836876e-18
Info: cfl dt = 0.0004125916651020326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0770e+04 | 82944 |      1 | 1.172e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2588348731906414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0990623764109633, dt = 0.0004125916651020326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 2.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.91 us    (0.5%)
   LB compute        : 395.63 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-19,-1.8008804446571763e-18,-1.0693274444458022e-18)
    sum a = (-3.1815838396180015e-18,-5.297648543189236e-19,-1.0957751922978374e-17)
    sum e = 0.06836287422818776
    sum de = 1.8539857149502126e-17
Info: cfl dt = 0.00041554632495471855 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4448e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3331807493471575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09947496807606533, dt = 0.00041554632495471855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 359.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8749251562813265e-19,-1.8000756153491026e-18,-1.0735044171173984e-18)
    sum a = (-4.829874262552629e-18,-3.970990372113582e-18,-1.3227368823488933e-17)
    sum e = 0.068362874746616
    sum de = 2.7647155398380363e-18
Info: cfl dt = 0.0004186977596624793 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4470e+04 | 82944 |      1 | 1.114e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3431358877179487 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.55s (niter = 4) global walltime = 358.83s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.09989051440102005, dt = 0.0004186977596624793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 385.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.103929661557534e-20,-1.8024713863126704e-18,-1.0795401427921547e-18)
    sum a = (-3.2199161750350858e-18,3.675711600853855e-18,-1.4917626314294136e-17)
    sum e = 0.06836287532875496
    sum de = 5.149960319306146e-18
Info: cfl dt = 0.00042185525950567455 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2884e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3245029583307124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10030921216068253, dt = 0.00042185525950567455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.9%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 357.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.593656445351658e-19,-1.7996919176557187e-18,-1.0861573569526165e-18)
    sum a = (-3.2199161750350858e-18,-2.0226296359920918e-18,-1.499447928179003e-17)
    sum e = 0.06836287593607132
    sum de = 1.0516761073109393e-17
Info: cfl dt = 0.0004118509084271204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3763e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.350571369664895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10073106742018821, dt = 0.0004118509084271204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 412.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.779094317738616e-19,-1.8022561412651625e-18,-1.0923268712782678e-18)
    sum a = (-2.9899221625325797e-18,-1.0211973732207629e-19,-9.227233882991176e-18)
    sum e = 0.06836287374589069
    sum de = -3.3610267347050637e-18
Info: cfl dt = 0.00041466458925730704 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3597e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3155899520095673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10114291832861533, dt = 0.00041466458925730704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 408.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.8014045195554566e-18,-1.0950182956743252e-18)
    sum a = (1.3799640750150368e-18,3.0770683313323575e-18,-1.1223012362699509e-17)
    sum e = 0.06836287429749262
    sum de = 1.2197274440461925e-17
Info: cfl dt = 0.00041766672910931163 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2251e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3003366856020508 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 363.37s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10155758291787263, dt = 0.00041766672910931163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 386.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-20,-1.7993456538836405e-18,-1.100136465349944e-18)
    sum a = (6.708158697989762e-18,-2.2840681423914247e-18,-1.4883471998300674e-17)
    sum e = 0.06836287490301826
    sum de = 1.5178830414797062e-18
Info: cfl dt = 0.0004208673203793385 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2256e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3098473985092318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10197524964698194, dt = 0.0004208673203793385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 347.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-19,-1.801666557004597e-18,-1.1071355603895628e-18)
    sum a = (1.2649670687637836e-18,-3.698471425007748e-19,-1.337451993695465e-17)
    sum e = 0.06836287556596653
    sum de = 5.312590645178972e-18
Info: cfl dt = 0.0004222757463309412 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3914e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3501800596550302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10239611696736128, dt = 0.0004222757463309412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.4%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 411.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
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: 1.6325593171296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.8004780300031394e-18,-1.1124652754371996e-18)
    sum a = (1.3416317395979524e-18,-3.9389469354758634e-18,-1.7839868321100747e-17)
    sum e = 0.0683628758580532
    sum de = 1.848564704087785e-17
Info: cfl dt = 0.00040972506417662734 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3688e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3505563999675694 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 366.77s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10281839271369222, dt = 0.00040972506417662734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 371.43 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.56 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6414930555555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.887372765678255e-19,-1.8039313092435944e-18,-1.1207052214097673e-18)
    sum a = (-2.606598808361736e-18,-4.2884300247863123e-19,-1.0942549668317036e-17)
    sum e = 0.06836287319073456
    sum de = -4.391018798566293e-18
Info: cfl dt = 0.00041239601926459127 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3623e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3092465223010852 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10322811777786885, dt = 0.00041239601926459127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 390.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
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: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.618551664145516e-19,-1.8033230080223763e-18,-1.1238302020961373e-18)
    sum a = (5.6348533063114e-18,-2.9105622493643974e-18,-1.3083719241597659e-17)
    sum e = 0.06836287374283197
    sum de = 2.4936649967166602e-18
Info: cfl dt = 0.00041525091278776186 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3757e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3201853410999762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10364051379713343, dt = 0.00041525091278776186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 396.78 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.15 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1082784479396395e-19,-1.8046331952680773e-18,-1.129703533383121e-18)
    sum a = (3.8332335417084355e-20,1.2913205493630291e-18,-1.4041310575142672e-17)
    sum e = 0.06836287433684413
    sum de = -7.752045533271357e-18
Info: cfl dt = 0.00041830046676120323 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4076e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3350726535143345 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 370.15s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.1040557647099212, dt = 0.00041830046676120323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 411.69 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.49 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5812088359547295e-19,-1.8032668571404176e-18,-1.1357600451513587e-18)
    sum a = (8.049790437587714e-18,-2.68955237797527e-18,-1.4252915612195184e-17)
    sum e = 0.06836287497133776
    sum de = -1.338989683019598e-17
Info: cfl dt = 0.00042141444879432603 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4253e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3480879603193665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10447406517668241, dt = 0.00042141444879432603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 390.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0728106380652126e-19,-1.805447383056477e-18,-1.1418103082522323e-18)
    sum a = (3.2199161750350858e-18,1.2802401086565282e-18,-1.3536213536902271e-17)
    sum e = 0.06836287562413168
    sum de = 6.938893903907228e-18
Info: cfl dt = 0.00040992476594532186 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3886e+04 | 82944 |      1 | 1.123e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3514141216292612 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 372.39s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10489547962547674, dt = 0.00040992476594532186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 416.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1145022526381037e-19,-1.803921950763268e-18,-1.147200157135656e-18)
    sum a = (-8.89310181676357e-18,-6.379638604610531e-18,-1.2102985995208764e-17)
    sum e = 0.06836287317580685
    sum de = 1.6371452804531117e-17
Info: cfl dt = 0.00041255693422284113 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2499e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2898955636444878 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 373.53s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10530540439142207, dt = 0.00041255693422284113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 391.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0062238046984643e-19,-1.808161342351144e-18,-1.151957779424308e-18)
    sum a = (5.404859293808894e-18,-4.466615490201665e-18,-1.4045851913695245e-17)
    sum e = 0.06836287369610118
    sum de = -5.800481622797449e-18
Info: cfl dt = 0.0004153709466752345 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3606e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3180002371915316 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 374.66s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10571796132564491, dt = 0.0004153709466752345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 425.99 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.31 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.779094317738616e-19,-1.809172058226399e-18,-1.1581182088413981e-18)
    sum a = (-8.049790437587714e-19,-3.208536262958139e-18,-1.559541464563894e-17)
    sum e = 0.06836287424662602
    sum de = 2.168404344971009e-19
Info: cfl dt = 0.00041837691247556796 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3741e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3294132659560989 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 1) global walltime = 375.79s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10613333227232015, dt = 0.00041837691247556796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 376.55 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-1.811081188212992e-18,-1.1649813579241449e-18)
    sum a = (8.509778462592727e-18,-7.196297031816696e-18,-1.2716921170285554e-17)
    sum e = 0.0683628748286257
    sum de = 1.463672932855431e-18
Info: cfl dt = 0.00042158039564314716 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2189e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3108539743068284 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 376.94s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10655170918479571, dt = 0.00042158039564314716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.4%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.2%)
   LB compute        : 419.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 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: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.216556895879279e-19,-1.8147216370599758e-18,-1.169760467812478e-18)
    sum a = (1.954949106271302e-18,-5.0122523271542255e-18,-1.6143757490034804e-17)
    sum e = 0.06836287544668086
    sum de = 2.656295322589486e-18
Info: cfl dt = 0.00042314135235689906 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1126e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3014381530450736 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 378.10s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10697328958043886, dt = 0.00042314135235689906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 376.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.216556895879279e-19,-1.816378088077755e-18,-1.1773451546687195e-18)
    sum a = (2.9899221625325797e-18,-3.651154948477285e-18,-1.771341242813952e-17)
    sum e = 0.06836287570228154
    sum de = 1.3660947373317356e-17
Info: cfl dt = 0.0004105790663608094 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4008e+04 | 82944 |      1 | 1.121e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3591985795719956 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 379.23s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10739643093279576, dt = 0.0004105790663608094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.07 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 416.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3478555442964167e-19,-1.8175198226775805e-18,-1.1848886022940052e-18)
    sum a = (-4.9065389333867974e-18,-2.1211557168688165e-18,-1.243943058373893e-17)
    sum e = 0.06836287296703722
    sum de = 8.077306185017008e-18
Info: cfl dt = 0.0004132583530548491 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4142e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3212289012956862 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 380.35s (max_walltime = 380.86s)  [SPH][rank=0]
---------------- t = 0.10780700999915657, dt = 0.0004132583530548491 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 386.21 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.96 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.283143729246027e-19,-1.817763143166068e-18,-1.1889647380710502e-18)
    sum a = (2.798260485447158e-18,-7.920418805555054e-18,-2.020220803677681e-17)
    sum e = 0.0683628734246721
    sum de = 6.613633252161577e-18
Info: cfl dt = 0.0004161206156733112 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3903e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3255650055152142 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 381.47s > 380.86s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 12):
   -> walltime = 381.46935822200004 >= 380.860496339
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000012.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (57.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000012.sham                      [Shamrock Dump][rank=0]
              - took 5.02 ms, bandwidth = 2.91 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 381.46935822200004 -> 411.46935822200004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.10822026835221142)
   -> iter = None (current = 322)
   -> walltime = 411.46935822200004 (current = 381.47862703500004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 411.47s)      [SPH][rank=0]
---------------- t = 0.10822026835221142, dt = 0.0004161206156733112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (1.1%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 411.32 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.822339440045695e-18,-1.1989831346151108e-18)
    sum a = (-3.25824851045217e-18,-5.984635866992295e-18,-1.4281261416527528e-17)
    sum e = 0.06836287390720235
    sum de = 4.336808689942018e-19
Info: cfl dt = 0.0004191763731058061 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2035e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.301017533945128 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.91s (niter = 6) global walltime = 382.63s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.10863638896788473, dt = 0.0002524999210041512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 395.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130426e-20,-1.8232659295980124e-18,-1.2013375461431996e-18)
    sum a = (6.899820375075184e-19,1.766881085631232e-20,-1.2038980372978685e-17)
    sum e = 0.06836284637247214
    sum de = 1.3660947373317356e-17
Info: cfl dt = 0.0004211530059690253 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5041e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8223935272732189 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 325                                                     [SPH][rank=0]
Info: time since start : 383.73760553 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 4):
   -> t = 0.10888888888888888 >= 0.10888888888888888
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000004.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.10888888888888888 -> 0.13611111111111113

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.10888888888888888)
   -> iter = None (current = 324)
   -> walltime = 411.46935822200004 (current = 384.347066352)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 411.47s)      [SPH][rank=0]
---------------- t = 0.10888888888888888, dt = 0.0004211530059690253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 382.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
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: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9707559948240377e-19,-1.822760571660385e-18,-1.2061270158435244e-18)
    sum a = (7.666467083416871e-20,-4.419598485041648e-18,-1.0634564831262252e-17)
    sum e = 0.06836287477068448
    sum de = -1.0733601507606494e-17
Info: cfl dt = 0.0004101430877218751 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3183e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3377355219474802 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.67s (niter = 5) global walltime = 385.48s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.1093100418948579, dt = 0.0004101430877218751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 324.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.20410928648235e-19,-1.825053399340362e-18,-1.210205753580892e-18)
    sum a = (-6.593161691738509e-18,-4.8837791092329036e-18,-1.2766877748770048e-17)
    sum e = 0.06836287233451585
    sum de = -6.830473686658678e-18
Info: cfl dt = 0.0004127740682758841 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4080e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.318717663490535 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10972018498257978, dt = 0.0004127740682758841 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.4%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 438.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456792
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.935288184949611e-19,-1.827729924713723e-18,-1.2159339954139016e-18)
    sum a = (-5.443191629225978e-18,-3.8425171541922605e-18,-1.3414303879159101e-17)
    sum e = 0.06836287272596352
    sum de = 8.131516293641283e-18
Info: cfl dt = 0.0004155873962000442 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3313e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3134485399864142 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11013295905085567, dt = 0.0004155873962000442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.7%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 368.82 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456792
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.031119023492321e-19,-1.8288155084315896e-18,-1.2216339647953718e-18)
    sum a = (4.714877256301376e-18,-3.4443699671843416e-18,-9.554767655760312e-18)
    sum e = 0.06836287314763284
    sum de = 7.101524229780054e-18
Info: cfl dt = 0.0004185943898146468 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4080e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3362298143767264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11054854644705571, dt = 0.0004185943898146468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.6%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 405.73 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456792
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.922840575552682e-19,-1.8302754313625136e-18,-1.2247790684094548e-18)
    sum a = (6.133173666733497e-19,-1.5967813472179202e-18,-1.1880021852903518e-17)
    sum e = 0.06836287360101075
    sum de = -1.1384122811097797e-18
Info: cfl dt = 0.0004218005826602631 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3795e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3407145300405259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11096714083687036, dt = 0.0004218005826602631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 417.38 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.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: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.749850312562653e-20,-1.830902449544385e-18,-1.230316605583075e-18)
    sum a = (8.739772475095234e-18,-4.5473230245368544e-18,-1.0812165143885176e-17)
    sum e = 0.06836287409273616
    sum de = 8.61940727125976e-18
Info: cfl dt = 0.00042406407170544755 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3900e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.352911812406726 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.50s (niter = 4) global walltime = 391.10s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11138894141953062, dt = 0.00042406407170544755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 380.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456792
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4019947682662363e-19,-1.8334853901144813e-18,-1.2347049765757485e-18)
    sum a = (9.583083854271088e-19,-3.2280019020371272e-18,-1.3761635031257272e-17)
    sum e = 0.06836287438468006
    sum de = -7.26415455565288e-18
Info: cfl dt = 0.0004107314542734098 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3455e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.351980353014722 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11181300549123607, dt = 0.0004107314542734098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.8%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 379.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.018671414095393e-19,-1.834804935840509e-18,-1.2409615224539227e-18)
    sum a = (-3.756568870874267e-18,-3.891181251889731e-18,-1.0730770941019117e-17)
    sum e = 0.06836287148014039
    sum de = 7.209944447028604e-18
Info: cfl dt = 0.00041341522007047116 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2375e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2902277726251197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11222373694550948, dt = 0.00041341522007047116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.6%)
   patch tree reduce : 1.47 us    (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        : 395.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.510273216205876e-19,-1.835965387400987e-18,-1.2447502754871815e-18)
    sum a = (4.216556895879279e-18,-5.564477534256597e-18,-8.600980636387273e-18)
    sum e = 0.06836287184938823
    sum de = 4.7704895589362195e-18
Info: cfl dt = 0.00041628335400998125 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2429e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.299617840246244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11263715216557996, dt = 0.00041628335400998125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 378.56 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-19,-1.8392970063971984e-18,-1.2478428997424384e-18)
    sum a = (-2.4532694666933987e-18,-5.246289203157752e-18,-1.2175633679025084e-17)
    sum e = 0.06836287225789589
    sum de = 4.716279450311944e-18
Info: cfl dt = 0.0004193468205685208 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3764e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3327581459194264 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.39s (niter = 3) global walltime = 395.65s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11305343551958993, dt = 0.0004193468205685208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 328.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.031119023492321e-19,-1.8408598726117133e-18,-1.2537455760764486e-18)
    sum a = (-3.6415718646230136e-18,-5.408303214569023e-18,-7.62981087771299e-18)
    sum e = 0.06836287270630155
    sum de = 4.119968255444917e-18
Info: cfl dt = 0.0004226114838605856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1020e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2926219210222387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11347278234015845, dt = 0.0004226114838605856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.6%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.331059148517383e-19,-1.843508322544095e-18,-1.2560327046603713e-18)
    sum a = (6.51649702090434e-18,-3.8795018684423384e-18,-9.416492353481621e-18)
    sum e = 0.06836287320571734
    sum de = 1.3064636178450328e-17
Info: cfl dt = 0.0004114441267149938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3730e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3524023982460256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11389539382401903, dt = 0.0004114441267149938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.5%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 410.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 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: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1145022526381037e-19,-1.8449588869946925e-18,-1.2602977775772962e-18)
    sum a = (3.334913181286339e-18,-1.3114450254569984e-17,-4.081387526113334e-18)
    sum e = 0.06836287080463775
    sum de = 8.944667923005412e-18
Info: cfl dt = 0.00041414840730651656 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3417e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3110680352294182 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 399.08s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11430683795073403, dt = 0.00041414840730651656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 360.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.851594049546136e-18,-1.2608314919187905e-18)
    sum a = (-2.031613777105471e-18,-1.8342621439815755e-18,-4.348883669413896e-18)
    sum e = 0.06836287119669188
    sum de = 3.415236843329339e-18
Info: cfl dt = 0.0004170381498359132 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3646e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3238007917752646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11472098635804054, dt = 0.0004170381498359132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.7%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 388.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 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: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.210333091180815e-19,-1.850171560536518e-18,-1.2627112078965138e-18)
    sum a = (-4.983203604220966e-18,-3.2962813744988087e-18,-1.721106841492932e-18)
    sum e = 0.0683628716308283
    sum de = -1.3552527156068805e-17
Info: cfl dt = 0.00042012352308488655 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2992e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.321199162318864 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 401.34s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11513802450787645, dt = 0.00042012352308488655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 350.37 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5395172213818386e-19,-1.8518560869952764e-18,-1.2628766492538974e-18)
    sum a = (1.801619764602965e-18,-1.6282258411147471e-18,-1.4443479014421632e-18)
    sum e = 0.06836287211108288
    sum de = -5.421010862427522e-19
Info: cfl dt = 0.00042341028874453055 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3376e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3379725004133747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11555814803096134, dt = 0.00042341028874453055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (1.6%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 438.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.229004505276208e-20,-1.852324011011598e-18,-1.2634720511984722e-18)
    sum a = (-2.721595814612989e-18,2.471237748920157e-18,-3.1819600525586657e-19)
    sum e = 0.06836287264742003
    sum de = 4.336808689942018e-19
Info: cfl dt = 0.0004250415207031258 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0068e+04 | 82944 |      1 | 1.184e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.287652555287426 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 403.66s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11598155831970587, dt = 0.0004250415207031258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 361.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.545741026080303e-19,-1.8501902774971706e-18,-1.2633665744610619e-18)
    sum a = (-3.7949012062913515e-18,-7.738340212323904e-19,-2.1801567241627457e-19)
    sum e = 0.06836287285851778
    sum de = 1.3552527156068805e-18
Info: cfl dt = 0.00041230571096323817 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3569e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.357198057551159 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 404.79s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11640659984040899, dt = 0.00041230571096323817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 438.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5812088359547295e-19,-1.851762502192012e-18,-1.2634557304026185e-18)
    sum a = (-9.928074873024847e-18,-2.1097758047918694e-19,-3.2934727559984757e-18)
    sum e = 0.06836287022682509
    sum de = -1.1546753136970622e-17
Info: cfl dt = 0.00041508277600499805 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3346e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3125344207712641 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 405.92s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11681890555137223, dt = 0.00041508277600499805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.12 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 429.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4916018021104833e-19,-1.8517250682707064e-18,-1.2654480724450831e-18)
    sum a = (2.2232754541908927e-18,-1.124814467395069e-18,4.0946550742425285e-18)
    sum e = 0.06836287067777985
    sum de = -8.023096076392733e-18
Info: cfl dt = 0.00041804759613800295 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3363e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3216832939798882 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 407.05s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11723398832737722, dt = 0.00041804759613800295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 354.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5332934166833742e-19,-1.8518748039559294e-18,-1.2621627756881767e-18)
    sum a = (-5.864847318813906e-18,-7.136702229097948e-18,-7.889951032723272e-18)
    sum e = 0.06836287117415141
    sum de = -8.40256683676266e-18
Info: cfl dt = 0.0004212110665840114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3598e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3353936913842717 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 408.18s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11765203592351522, dt = 0.0004212110665840114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 344.83 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.528944630301269e-19,-1.856329440591313e-18,-1.2680005646543586e-18)
    sum a = (-5.519856300060147e-18,-3.2194669679794167e-18,-6.425269469870192e-18)
    sum e = 0.06836287172165605
    sum de = 1.1384122811097797e-18
Info: cfl dt = 0.0004241893244497547 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2476e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3249881912695058 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 409.32s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11807324699009923, dt = 0.0004241893244497547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 376.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
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: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.079034442763677e-19,-1.8570219681354693e-18,-1.2704463506730314e-18)
    sum a = (-8.049790437587714e-19,-4.2819913903217235e-18,-7.201690237612478e-18)
    sum e = 0.0683628722464753
    sum de = -1.0083080204115191e-17
Info: cfl dt = 0.00041348379771236136 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3300e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3495192143624473 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 410.46s (max_walltime = 411.47s)  [SPH][rank=0]
---------------- t = 0.11849743631454898, dt = 0.00041348379771236136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 318.38 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
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: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4436863828391274e-19,-1.8594926069416488e-18,-1.2735887558504517e-18)
    sum a = (3.679904200040098e-18,-3.3530311991983202e-18,-1.0554979728553698e-17)
    sum e = 0.06836287008205388
    sum de = -8.998878031629687e-18
Info: cfl dt = 0.0004162747359131771 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2196e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2956600791496025 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 411.61s > 411.47s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 13):
   -> walltime = 411.606946198 >= 411.46935822200004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000013.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (55.3%)
Info: dump to _to_trash/sod_128/dump/dump_0000013.sham                      [Shamrock Dump][rank=0]
              - took 9.08 ms, bandwidth = 1.61 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 411.606946198 -> 441.606946198

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.11891092011226134)
   -> iter = None (current = 348)
   -> walltime = 441.606946198 (current = 411.620072277)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 441.61s)      [SPH][rank=0]
---------------- t = 0.11891092011226134, dt = 0.0004162747359131771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 447.45 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.103929661557534e-20,-1.860147700564499e-18,-1.2786587992715065e-18)
    sum a = (2.4532694666933987e-18,-4.290975531435103e-18,-6.696862955282947e-18)
    sum e = 0.06836287057310157
    sum de = 1.3010426069826053e-18
Info: cfl dt = 0.0004192540783339608 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2476e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3094505332729407 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.87s (niter = 6) global walltime = 412.77s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.11932719484817451, dt = 0.0004192540783339608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 328.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084353e-19,-1.862412452803497e-18,-1.2806823918623411e-18)
    sum a = (-1.8782844354371334e-18,-3.764804333561531e-18,-1.196717987902088e-17)
    sum e = 0.06836287110836518
    sum de = -1.1872013788716274e-17
Info: cfl dt = 0.0004224319257951035 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3016e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3286589179332722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11974644892650847, dt = 0.0004224319257951035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 317.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708158697989762e-20,-1.8634793195607106e-18,-1.2868596997563817e-18)
    sum a = (-1.2266347333466993e-18,-1.998072983615522e-18,-9.548182236372762e-18)
    sum e = 0.06836287169177863
    sum de = 7.48099499014998e-18
Info: cfl dt = 0.00042471291943180515 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1992e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3199445462975665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12016888085230358, dt = 0.00042471291943180515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.0%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 331.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.001875018316359e-19,-1.8643402997507427e-18,-1.290431953094678e-18)
    sum a = (-9.583083854271088e-19,-5.599365948913553e-18,-1.1182383637546483e-17)
    sum e = 0.0683628721076115
    sum de = 5.963111948670274e-19
Info: cfl dt = 0.0004114892095805455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1066e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.310007379319675 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12059359377173538, dt = 0.0004114892095805455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.8%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 352.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5812088359547295e-19,-1.8676344848256485e-18,-1.2953773004156532e-18)
    sum a = (9.199760500100246e-19,-2.157391752692779e-18,-9.478700484854825e-18)
    sum e = 0.06836286949296937
    sum de = -1.0354130747236567e-17
Info: cfl dt = 0.00041415338861761335 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2427e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2935340396815425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12100508298131593, dt = 0.00041415338861761335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.6%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 387.75 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6832634791959046e-19,-1.867072976006062e-18,-1.2989257392848222e-18)
    sum a = (2.6449311437788205e-18,1.817791218607047e-18,-1.3295474800110794e-17)
    sum e = 0.06836286997442008
    sum de = -5.2583805365546965e-18
Info: cfl dt = 0.0004170016005088427 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3018e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.312528275964074 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12141923636993354, dt = 0.0004170016005088427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.59 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.870576369899221e-19,-1.8657440717997084e-18,-1.3052668377275093e-18)
    sum a = (5.6348533063114e-18,-3.877255833163994e-18,-1.3853589621911163e-17)
    sum e = 0.06836287049447241
    sum de = -5.204170427930421e-18
Info: cfl dt = 0.0004200446575021711 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1480e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2937191604948233 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.60s (niter = 4) global walltime = 419.67s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12183623797044238, dt = 0.0004200446575021711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 375.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.126949862035032e-19,-1.8685703328582922e-18,-1.3112285810030413e-18)
    sum a = (4.9065389333867974e-18,-7.74013704054658e-18,-1.2445216803511891e-17)
    sum e = 0.06836287105376754
    sum de = -2.043721095135176e-17
Info: cfl dt = 0.0004232880443415404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1488e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3033060483512748 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12225628262794455, dt = 0.0004232880443415404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 369.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.827009737009971e-19,-1.8727442150838828e-18,-1.316169942842012e-18)
    sum a = (4.063227554210942e-18,6.847412885247139e-18,-2.1916293940321503e-18)
    sum e = 0.06836287165936573
    sum de = 1.2685165418080402e-17
Info: cfl dt = 0.00041197543544681643 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3381e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3481446879723409 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12267957067228609, dt = 0.00041197543544681643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.0%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 335.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.749850312562653e-20,-1.8669045233601865e-18,-1.3149140733008204e-18)
    sum a = (3.3732455167034233e-18,3.6080310711330645e-18,-4.734148751408584e-18)
    sum e = 0.06836286943096702
    sum de = -1.6263032587282567e-17
Info: cfl dt = 0.00041462799493624205 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3163e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.308210179969011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1230915461077329, dt = 0.00041462799493624205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 321.56 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.252024705753706e-19,-1.8658938074849314e-18,-1.317402369778667e-18)
    sum a = (1.724955093768796e-18,1.6327179116714367e-18,-2.2214094897708664e-18)
    sum e = 0.06836286990515895
    sum de = -1.0299920638612292e-18
Info: cfl dt = 0.0004174641587968957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3541e+04 | 82944 |      1 | 1.128e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3234371330629668 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 424.22s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12350617410266915, dt = 0.0004174641587968957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 315.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.941511989648075e-19,-1.865800222681667e-18,-1.3178381218325287e-18)
    sum a = (-2.721595814612989e-18,5.736374100892584e-18,-8.717004538331447e-18)
    sum e = 0.06836287041352071
    sum de = 1.8973538018496328e-18
Info: cfl dt = 0.0004204939108543889 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2493e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3135155096999998 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12392363826146605, dt = 0.0004204939108543889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 317.48 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
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: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4853779974120188e-19,-1.862842942898513e-18,-1.3228603886886106e-18)
    sum a = (2.721595814612989e-18,1.4033228419098225e-18,-5.842421722557666e-18)
    sum e = 0.06836287095725313
    sum de = 1.951563910473908e-18
Info: cfl dt = 0.0004237227734388922 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3594e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3431377900309736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12434413217232043, dt = 0.0004237227734388922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 323.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.103929661557534e-20,-1.862861659859166e-18,-1.324703872620012e-18)
    sum a = (-5.558188635477231e-18,4.9879951461481015e-18,-9.456949008659392e-18)
    sum e = 0.06836287154268318
    sum de = -1.6263032587282567e-19
Info: cfl dt = 0.0004256748921252053 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3407e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.35000955920401 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 3.43s (niter = 3) global walltime = 427.63s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12476785494575933, dt = 0.0004256748921252053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 348.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5812088359547295e-19,-1.8604097380136395e-18,-1.3294674796472864e-18)
    sum a = (-5.251529952140556e-18,7.36100628556198e-18,-4.346807789187117e-18)
    sum e = 0.0683628718748068
    sum de = 2.461138931542095e-17
Info: cfl dt = 0.00041283432380659953 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2724e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3436115971230482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12519352983788454, dt = 0.00041283432380659953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.0%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 355.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
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: 1.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9645321901255733e-19,-1.8565353271584946e-18,-1.3301841628226871e-18)
    sum a = (1.4182964104321211e-18,9.602549493350077e-18,-9.920839966531676e-18)
    sum e = 0.06836286932971253
    sum de = 9.215718466126788e-19
Info: cfl dt = 0.00041555696099799535 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3239e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.312304547005635 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12560636416169113, dt = 0.00041555696099799535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.4%)
   patch tree reduce : 1.55 us    (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 425.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974405e-19,-1.851893520916582e-18,-1.3354912706270473e-18)
    sum a = (1.801619764602965e-18,5.86604520429569e-18,-7.644321416477307e-18)
    sum e = 0.06836286978848204
    sum de = -1.3118846287074604e-17
Info: cfl dt = 0.00041846478907271126 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3173e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3197694401928313 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.28s (niter = 2) global walltime = 431.04s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12602192112268912, dt = 0.00041846478907271126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 367.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.487253015728379e-19,-1.8500592587726006e-18,-1.3382317669392551e-18)
    sum a = (-5.711517977145569e-18,6.910601344411239e-18,-1.0874350695212996e-17)
    sum e = 0.06836287027799096
    sum de = 7.806255641895632e-18
Info: cfl dt = 0.00042156843473454143 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1459e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2978780830655146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12644038591176182, dt = 0.00042156843473454143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 424.45 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.82 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.708158697989762e-20,-1.847027111146835e-18,-1.343452511734433e-18)
    sum a = (-1.303299404180868e-17,3.539152655930492e-18,-8.316724966034731e-18)
    sum e = 0.06836287080124115
    sum de = 2.4665599424045226e-17
Info: cfl dt = 0.0004248225537821611 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2332e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3234707990765455 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 433.35s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12686195434649636, dt = 0.0004248225537821611 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 450.49 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.8462222818387614e-18,-1.3464727759908687e-18)
    sum a = (-1.188302397929615e-18,1.044166827333969e-17,-9.46716550233854e-18)
    sum e = 0.06836287135411963
    sum de = 2.6454533008646308e-17
Info: cfl dt = 0.00041344672111987403 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1234e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3134393406221723 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 434.51s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.1272867769002785, dt = 0.00041344672111987403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 364.04 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.840513608839635e-18,-1.3506128665739872e-18)
    sum a = (6.593161691738509e-18,3.4349366190152934e-18,-4.313039368591266e-18)
    sum e = 0.06836286908243208
    sum de = 8.72782748850831e-18
Info: cfl dt = 0.0004161813129652918 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3045e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.310770323651476 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 435.65s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12770022362139838, dt = 0.0004161813129652918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.3%)
   patch tree reduce : 1.55 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 424.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 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: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130425e-19,-1.8401954205085365e-18,-1.3513584052314022e-18)
    sum a = (1.954949106271302e-18,1.3326475984845732e-18,2.9349346732698865e-19)
    sum e = 0.06836286951167439
    sum de = -4.662069341687669e-18
Info: cfl dt = 0.0004191021482912189 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1629e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2938731054222161 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 436.81s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12811640493436366, dt = 0.0004191021482912189 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 346.81 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 34.77 us   (8.7%)
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: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.743626507864189e-19,-1.8400082509020078e-18,-1.3502821291550632e-18)
    sum a = (-3.8332335417084355e-20,5.540220353250473e-18,8.065771324749565e-19)
    sum e = 0.06836286997027073
    sum de = -1.8431436932253575e-18
Info: cfl dt = 0.0004222193760380086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3007e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3280111904802043 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 437.95s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12853550708265488, dt = 0.0004222193760380086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.4%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 406.01 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.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: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-19,-1.8373317255286466e-18,-1.3498183947533914e-18)
    sum a = (-1.76328742918588e-18,8.223483832446378e-18,-3.6255888888306456e-19)
    sum e = 0.06836287046214713
    sum de = 8.782037597132586e-18
Info: cfl dt = 0.0004255392490431117 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3225e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3418903234506743 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 439.08s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12895772645869288, dt = 0.0004255392490431117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 326.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8749251562813265e-19,-1.8325963344834697e-18,-1.350182132661038e-18)
    sum a = (-7.973125766753546e-18,1.735137120363959e-18,-3.1771877072374798e-18)
    sum e = 0.06836287099483922
    sum de = -8.456776945386935e-18
Info: cfl dt = 0.00041157919822831275 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3367e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3550649732027906 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 440.21s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.129383265707736, dt = 0.00041157919822831275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 313.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-19,-1.8335508994767665e-18,-1.352117415615975e-18)
    sum a = (1.8782844354371334e-18,6.0538137535653146e-18,-2.960344576977569e-18)
    sum e = 0.06836286823569304
    sum de = -1.951563910473908e-18
Info: cfl dt = 0.00041419627647612604 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3235e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3082441519668726 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 441.35s (max_walltime = 441.61s)  [SPH][rank=0]
---------------- t = 0.12979484490596432, dt = 0.00041419627647612604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 388.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-1.831117694591893e-18,-1.353312244108524e-18)
    sum a = (2.7599281500300737e-18,5.384794711989014e-18,1.1067965827367659e-18)
    sum e = 0.06836286861702168
    sum de = 2.168404344971009e-17
Info: cfl dt = 0.00041699556233832703 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3219e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3162761198245065 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 442.48s > 441.61s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 14):
   -> walltime = 442.479033759 >= 441.606946198
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000014.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (51.9%)
Info: dump to _to_trash/sod_128/dump/dump_0000014.sham                      [Shamrock Dump][rank=0]
              - took 7.34 ms, bandwidth = 1.99 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 442.479033759 -> 472.479033759

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.13020904118244045)
   -> iter = None (current = 375)
   -> walltime = 472.479033759 (current = 442.49019129100003)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 472.48s)      [SPH][rank=0]
---------------- t = 0.13020904118244045, dt = 0.00041699556233832703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1.95 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        : 383.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-19,-1.827991962162863e-18,-1.3520115177166923e-18)
    sum a = (-1.4566287458492054e-18,6.344899925638799e-18,-5.2790890268654446e-18)
    sum e = 0.06836286902970223
    sum de = 5.854691731421724e-18
Info: cfl dt = 0.0004199879936210164 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1747e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.298523680345893 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.94s (niter = 6) global walltime = 443.65s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13062603674477877, dt = 0.0004199879936210164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703316e-20,-1.8255213233566837e-18,-1.3555754467689347e-18)
    sum a = (-6.631494027155593e-18,6.142157807846876e-18,-1.1619546722127182e-18)
    sum e = 0.06836286947685867
    sum de = -1.1926223897340549e-18
Info: cfl dt = 0.0004231789107163572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3242e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3351056918030941 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1310460247383998, dt = 0.0004231789107163572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 359.88 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.629124255226085e-19,-1.8225078926915712e-18,-1.3551683542762839e-18)
    sum a = (-9.583083854271088e-19,1.4907684820800463e-18,-9.13273693119966e-18)
    sum e = 0.06836286996489889
    sum de = -8.72782748850831e-18
Info: cfl dt = 0.0004258002802955308 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3296e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.346235251259384 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13146920364911616, dt = 0.0004258002802955308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (2.1%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 338.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
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: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.018671414095393e-19,-1.823144269353769e-18,-1.360772928105054e-18)
    sum a = (2.798260485447158e-18,1.1161297976521359e-18,-7.698653198211661e-18)
    sum e = 0.06836287034809542
    sum de = -1.3118846287074604e-17
Info: cfl dt = 0.0004149077470640293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0587e+04 | 82944 |      1 | 1.175e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3045119829262082 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1318950039294117, dt = 0.0004149077470640293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 328.06 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
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: 1.6326678240740737
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.8231817032750746e-18,-1.3636345547918342e-18)
    sum a = (-2.1466107833567237e-18,-5.279680260962478e-19,-6.086413077897397e-18)
    sum e = 0.0683628681909343
    sum de = 6.830473686658678e-18
Info: cfl dt = 0.0004177156183681072 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3493e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323475853505709 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13230991167647574, dt = 0.0004177156183681072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 382.99 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.8234811746455206e-18,-1.3658402393686164e-18)
    sum a = (1.9166167708542177e-18,2.3834926373794875e-18,-8.490269232848577e-18)
    sum e = 0.06836286860603505
    sum de = 1.1763593571467723e-17
Info: cfl dt = 0.0004207112954241631 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2772e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3193541229781065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13272762729484386, dt = 0.0004207112954241631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 320.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
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: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.612327859447051e-19,-1.821534610737622e-18,-1.369891198544432e-18)
    sum a = (3.8332335417084353e-19,-1.5332934166833741e-18,-5.5087403832961874e-18)
    sum e = 0.0683628690586421
    sum de = -1.6534083130403943e-17
Info: cfl dt = 0.00042390480023969836 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2586e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3254145422388433 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.58s (niter = 4) global walltime = 450.50s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13314833859026803, dt = 0.00042390480023969836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 352.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.318611539120454e-19,-1.8232191371963802e-18,-1.3716157662161873e-18)
    sum a = (9.544751518854004e-18,-2.7192000436494215e-19,-3.1525505226421503e-18)
    sum e = 0.06836286955602412
    sum de = 2.710505431213761e-18
Info: cfl dt = 0.00042645423055401446 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0699e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3007731958809252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13357224339050774, dt = 0.00042645423055401446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.9%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 330.04 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (8.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481484
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3061639297235256e-19,-1.8226389114161412e-18,-1.3724847293742617e-18)
    sum a = (-7.359808400080196e-18,-2.483516075108442e-18,-3.877528591870306e-18)
    sum e = 0.06836286994010454
    sum de = -2.0925101928970236e-17
Info: cfl dt = 0.0004131494959595984 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3362e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.357877796368111 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13399869762106176, dt = 0.0004131494959595984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.0%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 343.54 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481486
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6415718646230135e-19,-1.8251095502223207e-18,-1.3742226520962813e-18)
    sum a = (-4.408218572964701e-18,-9.03505124635496e-19,-5.198355470765395e-18)
    sum e = 0.068362867384921
    sum de = 3.5236570605778894e-18
Info: cfl dt = 0.0004158460439582063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1068e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2743707808480855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13441184711702137, dt = 0.0004158460439582063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 323.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.874925156281327e-20,-1.824473173560123e-18,-1.376677492861144e-18)
    sum a = (2.031613777105471e-18,1.5093357070476964e-18,-5.2270989201903785e-18)
    sum e = 0.06836286779750761
    sum de = 6.396792817664476e-18
Info: cfl dt = 0.00041872675356315867 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3498e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3265650534388118 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 455.11s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13482769316097956, dt = 0.00041872675356315867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 319.72 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.599880250050123e-19,-1.823294005038992e-18,-1.3788572132542105e-18)
    sum a = (-3.929064380251146e-18,4.459128705940516e-19,-8.37697505311963e-18)
    sum e = 0.06836286824903755
    sum de = -2.439454888092385e-18
Info: cfl dt = 0.0004218023349639518 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1520e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2997972616963431 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13524641991454273, dt = 0.0004218023349639518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.1%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 332.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
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: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.8236870612127023e-18,-1.383016367533278e-18)
    sum a = (2.7790943177386156e-18,2.028020120660119e-18,-7.970468251129589e-18)
    sum e = 0.06836286874232717
    sum de = 6.5052130349130266e-18
Info: cfl dt = 0.00042507820699091053 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3307e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3420672494999395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13566822224950667, dt = 0.00042507820699091053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (1.8%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 392.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.821834082108068e-18,-1.3863685151781909e-18)
    sum a = (1.9166167708542177e-19,-2.682065593714121e-18,-1.012870417712667e-17)
    sum e = 0.06836286928678283
    sum de = 8.456776945386935e-18
Info: cfl dt = 0.00041382875354642506 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3403e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3542526122023373 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 458.53s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.1360933004564976, dt = 1.7810654613537036e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 400.83 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.62 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.8227324962194055e-18,-1.3869268365638152e-18)
    sum a = (-4.944871268803882e-18,1.3919429298328756e-18,-8.758276122830806e-18)
    sum e = 0.06836282979762945
    sum de = 1.1411227865409934e-17
Info: cfl dt = 0.00041400654420196536 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3294e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.056658838873727316 (tsim/hr)                          [sph::Model][rank=0]
Info: iteration since start : 391                                                     [SPH][rank=0]
Info: time since start : 459.66403579700005 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 5):
   -> t = 0.13611111111111113 >= 0.13611111111111113
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000005.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.13611111111111113 -> 0.16333333333333333

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.13611111111111113)
   -> iter = None (current = 390)
   -> walltime = 472.479033759 (current = 460.723030068)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 472.48s)      [SPH][rank=0]
---------------- t = 0.13611111111111113, dt = 0.00041400654420196536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 387.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 9.15 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1499700625125307e-19,-1.8230506845505046e-18,-1.3905773524137228e-18)
    sum a = (1.1116377270954463e-18,-3.511601289849462e-18,-8.094647515208798e-18)
    sum e = 0.0683628672009768
    sum de = 4.363913744254155e-18
Info: cfl dt = 0.0004166387427016868 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2468e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.302173116027102 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.29s (niter = 2) global walltime = 461.87s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13652511765531308, dt = 0.0004166387427016868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 342.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6323181905864201
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-20,-1.824735211009263e-18,-1.3938557677118569e-18)
    sum a = (-2.7790943177386156e-18,2.73567096902395e-19,-1.1759595944310457e-17)
    sum e = 0.06836286763312802
    sum de = 8.402566836762659e-19
Info: cfl dt = 0.00041952725887946945 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9319e+04 | 82944 |      1 | 1.197e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2535221160918206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13694175639801476, dt = 0.00041952725887946945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (1.0%)
   patch tree reduce : 1.65 us    (0.2%)
   gen split merge   : 1.23 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.2%)
   LB compute        : 689.46 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.63231819058642
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.983203604220967e-19,-1.823855513858578e-18,-1.399560080238666e-18)
    sum a = (-4.2932215667134474e-18,2.177606070197882e-18,-8.519404371944321e-18)
    sum e = 0.0683628681082326
    sum de = -1.3010426069826053e-18
Info: cfl dt = 0.00042260769483614937 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3250e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3337909505413075 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 464.20s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13736128365689423, dt = 0.00042260769483614937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 326.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
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: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.599880250050123e-19,-1.8227324962194055e-18,-1.4024676268409578e-18)
    sum a = (-1.5907919198090007e-18,-4.64135703485689e-18,-1.3617087515315944e-17)
    sum e = 0.06836286862719863
    sum de = 8.321251673826247e-18
Info: cfl dt = 0.00042588810947614893 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3271e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.343953277864973 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 465.33s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.1377838913517304, dt = 0.00042588810947614893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 373.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6832634791959046e-19,-1.8262700017827987e-18,-1.4093203240345438e-18)
    sum a = (9.77474553135651e-19,-1.461570023461564e-18,-1.0083655713055347e-17)
    sum e = 0.0683628691961895
    sum de = -8.131516293641283e-20
Info: cfl dt = 0.0004273571633348536 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2951e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3484769573223148 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 466.47s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13820977946120652, dt = 0.0004273571633348536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 389.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229004505276208e-20,-1.8260266812943114e-18,-1.4128741265949948e-18)
    sum a = (8.241452114673136e-18,-5.31187343328542e-18,-1.2625960772528717e-17)
    sum e = 0.06836286943311146
    sum de = -5.4752209710517974e-18
Info: cfl dt = 0.00041485499214775483 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3105e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3559946490850487 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 467.61s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13863713662454138, dt = 0.00041485499214775483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.07 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 411.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.229004505276208e-20,-1.829770073424886e-18,-1.4186625060146059e-18)
    sum a = (4.676544920884291e-18,-2.2756829440189377e-18,-1.0510381030755347e-17)
    sum e = 0.06836286711198007
    sum de = 2.0952206983282373e-17
Info: cfl dt = 0.0004176346820985486 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1558e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2884650931005097 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 468.77s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13905199161668913, dt = 0.0004176346820985486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 433.73 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5395172213818386e-19,-1.829620337739663e-18,-1.4226099261054719e-18)
    sum a = (8.394781456341473e-18,-3.8235007221689416e-18,-1.2694314069178765e-17)
    sum e = 0.0683628675829735
    sum de = 3.713392440762853e-18
Info: cfl dt = 0.00042060070004226627 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1746e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3005056054767588 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 469.92s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13946962629878767, dt = 0.00042060070004226627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 353.18 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.629124255226085e-19,-1.8314733168442973e-18,-1.4283910278061862e-18)
    sum a = (1.6099580875175429e-18,-3.8708171986994046e-18,-1.0289883916843363e-17)
    sum e = 0.06836286809099353
    sum de = 2.2768245622195593e-18
Info: cfl dt = 0.0004237634692570438 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3284e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3378249139261562 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 471.06s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.13989022699882994, dt = 0.0004237634692570438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 425.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
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: 1.6321976273148149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.481029211029913e-19,-1.8335321825161134e-18,-1.4322078420195798e-18)
    sum a = (-3.449910187537592e-18,4.069815924360753e-19,-9.658615583406571e-18)
    sum e = 0.06836286864011193
    sum de = -9.595189226496714e-18
Info: cfl dt = 0.00042645128303763256 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2843e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.339770027406483 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 472.20s (max_walltime = 472.48s)  [SPH][rank=0]
---------------- t = 0.14031399046808699, dt = 0.00042645128303763256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 360.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.976979799522502e-19,-1.831810222136049e-18,-1.4362257179024002e-18)
    sum a = (6.899820375075184e-19,-2.5065753706327815e-19,-6.16985123308205e-18)
    sum e = 0.06836286910767282
    sum de = -9.86623976961809e-18
Info: cfl dt = 0.00041534891818120095 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1546e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3242656967083282 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 473.36s > 472.48s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 15):
   -> walltime = 473.35633809800004 >= 472.479033759
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000015.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (57.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000015.sham                      [Shamrock Dump][rank=0]
              - took 5.65 ms, bandwidth = 2.59 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 473.35633809800004 -> 503.35633809800004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.14074044175112463)
   -> iter = None (current = 401)
   -> walltime = 503.35633809800004 (current = 473.36596313200005)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 503.36s)      [SPH][rank=0]
---------------- t = 0.14074044175112463, dt = 0.00041534891818120095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (1.1%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 388.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.462357796934521e-19,-1.833008107617833e-18,-1.4380454571362852e-18)
    sum a = (-7.723965586542498e-18,4.80486840312039e-18,-8.347413416541536e-18)
    sum e = 0.06836286705587959
    sum de = 1.1384122811097797e-18
Info: cfl dt = 0.0004181226492078632 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3473e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3245107961847684 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.78s (niter = 6) global walltime = 474.50s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.14115579066930584, dt = 0.0004181226492078632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 346.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632197627314815
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.09770585685907e-19,-1.829358300290523e-18,-1.4420242544546022e-18)
    sum a = (1.3799640750150368e-18,3.456798029057849e-18,-9.096659439675812e-18)
    sum e = 0.06836286752447
    sum de = -9.161508357502512e-18
Info: cfl dt = 0.0004210824002425905 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2853e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3221083922422185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1415739133185137, dt = 0.0004210824002425905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 345.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.828553470982449e-18,-1.4459456330759056e-18)
    sum a = (-9.583083854271088e-19,2.1846436474033624e-18,-6.94198636807946e-18)
    sum e = 0.06836286802679933
    sum de = 8.538092108323347e-18
Info: cfl dt = 0.00042423809473608027 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2830e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3310539554197016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1419949957187563, dt = 0.00042423809473608027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 376.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
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: 1.6321976273148144
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6415718646230135e-19,-1.8277112077530698e-18,-1.4484663222789786e-18)
    sum a = (-3.2965808458692543e-18,2.048833380906114e-18,-7.429888937468267e-18)
    sum e = 0.06836286856668115
    sum de = -1.1655173354219173e-18
Info: cfl dt = 0.0004271035007083322 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3113e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.346242228213354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14241923381349236, dt = 0.0004271035007083322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 356.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321976273148144
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-1.8268315106023848e-18,-1.4517222385853817e-18)
    sum a = (1.5697091353296043e-17,1.0554868451368266e-18,-9.813496600313667e-18)
    sum e = 0.0683628690558695
    sum de = -1.1817803680091998e-17
Info: cfl dt = 0.00041368969948674074 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2947e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3522598367614196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14284633731420068, dt = 0.00041368969948674074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 424.62 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.34 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623492959104938
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.564412440175695e-19,-1.8258582286484354e-18,-1.456296030618028e-18)
    sum a = (-2.261607789607977e-18,3.030650268913232e-19,-1.0861977458610644e-17)
    sum e = 0.06836286658394064
    sum de = 9.568084172184577e-18
Info: cfl dt = 0.0004163557478223481 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3201e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.314338520291373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14326002701368742, dt = 0.0004163557478223481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 371.94 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6234929591049378
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-19,-1.8258956625697414e-18,-1.4610480970170431e-18)
    sum a = (-8.049790437587714e-19,-1.3086898888488955e-18,-7.064548156486312e-18)
    sum e = 0.06836286701527461
    sum de = 5.339695699491109e-18
Info: cfl dt = 0.00041920425899136227 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3038e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3198651825195304 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.54s (niter = 4) global walltime = 481.32s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.14367638276150976, dt = 0.00041920425899136227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 353.04 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623492959104938
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.797765731834009e-19,-1.827224566776095e-18,-1.4631999601569607e-18)
    sum a = (-2.357438628150688e-18,-9.723835398380696e-19,-7.683693233955892e-18)
    sum e = 0.06836286747665668
    sum de = -1.0814916670542907e-17
Info: cfl dt = 0.00042224568382859875 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2859e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3256342391556921 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14409558702050113, dt = 0.00042224568382859875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 340.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6234929591049378
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.102054643241175e-19,-1.82797324520221e-18,-1.466597199429536e-18)
    sum a = (1.1499700625125306e-18,5.299744842782358e-18,-8.097314851940367e-18)
    sum e = 0.0683628679692842
    sum de = 8.131516293641283e-20
Info: cfl dt = 0.000425485352594684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3193e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3413828780882702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14451783270432972, dt = 0.000425485352594684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 391.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6234929591049383
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7374027031657247e-19,-1.8237993629766193e-18,-1.4701040778716818e-18)
    sum a = (6.1331736667334966e-18,3.7898101929937694e-19,-8.560962022505101e-18)
    sum e = 0.06836286850092572
    sum de = 8.375461782450522e-18
Info: cfl dt = 0.0004140775647402847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3094e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3498491312252507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1449433180569244, dt = 0.0004140775647402847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.1%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.33 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623492959104938
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084353e-19,-1.825352870710808e-18,-1.4737937434870775e-18)
    sum a = (4.082393721919484e-18,-3.0343936610438063e-18,-1.0977013507642342e-17)
    sum e = 0.06836286639018553
    sum de = -9.161508357502512e-18
Info: cfl dt = 0.00041673752300114205 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3373e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3186645719028163 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 485.86s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.1453573956216647, dt = 0.00041673752300114205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 356.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6234929591049383
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1686414766079237e-19,-1.827542755107194e-18,-1.4788720532377231e-18)
    sum a = (3.4019947682662364e-18,-6.037342828190786e-19,-1.0898289670441084e-17)
    sum e = 0.06836286679913006
    sum de = -1.6534083130403943e-18
Info: cfl dt = 0.0004195801589750242 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2667e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3143611385321023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14577413314466584, dt = 0.0004195801589750242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 377.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6234929591049383
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.618551664145516e-19,-1.8270373971695664e-18,-1.483433670723803e-18)
    sum a = (5.184448365160659e-18,-1.7013717233461757e-18,-1.0941299278405787e-17)
    sum e = 0.06836286723849393
    sum de = 3.984442983884229e-18
Info: cfl dt = 0.000422615263672257 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2743e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3247264132564003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14619371330364087, dt = 0.000422615263672257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 329.93 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703316e-20,-1.82810426392678e-18,-1.4880594123370674e-18)
    sum a = (-3.651154948477285e-18,-1.166740459257505e-18,-7.896058880875485e-18)
    sum e = 0.06836286770961096
    sum de = 7.860465750519907e-18
Info: cfl dt = 0.00042584808093631027 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2810e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3355387840625288 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 489.28s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.14661632856731313, dt = 0.00042584808093631027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 378.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.2%)
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: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4853779974120188e-19,-1.8283663013759205e-18,-1.4907672372506602e-18)
    sum a = (5.309028455266183e-18,-2.832624825205833e-18,-9.735955064280257e-18)
    sum e = 0.06836286822048863
    sum de = 9.798477133837746e-18
Info: cfl dt = 0.00042794136010242747 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3345e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.355641091407713 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14704217664824945, dt = 0.00042794136010242747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 325.24 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.632426697530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.235228309974672e-19,-1.8300321108740263e-18,-1.4953263437476335e-18)
    sum a = (4.896955849532526e-18,-7.937488673670475e-19,-9.4593471173199e-18)
    sum e = 0.06836286852384055
    sum de = -2.9544509200229996e-18
Info: cfl dt = 0.00041499826576282627 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3169e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3590283057614576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14747011800835189, dt = 0.00041499826576282627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 328.91 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632426697530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406634e-20,-1.8292647154872586e-18,-1.4991820437005453e-18)
    sum a = (-1.1116377270954463e-18,-7.486035582723173e-19,-7.730237603879381e-18)
    sum e = 0.06836286613544063
    sum de = -4.8382521947165635e-18
Info: cfl dt = 0.00041773858429224964 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2545e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3066926001621253 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 492.69s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.14788511627411471, dt = 0.00041773858429224964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 334.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084355e-20,-1.8301069787166376e-18,-1.5020685158468864e-18)
    sum a = (1.715372009914525e-18,-1.509560310575531e-18,-9.157456665497053e-18)
    sum e = 0.0683628665432987
    sum de = -4.87890977618477e-19
Info: cfl dt = 0.00042066337229578355 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1235e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2915631064033979 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14830285485840697, dt = 0.00042066337229578355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (1.8%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 405.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.701934893291298e-19,-1.8310615437099343e-18,-1.5062072085343158e-18)
    sum a = (-7.704799418833955e-18,-8.483275246308258e-19,-1.0512666989896763e-17)
    sum e = 0.06836286698348364
    sum de = -6.735605996566196e-18
Info: cfl dt = 0.00042378305397372914 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1716e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3093910041797479 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 495.02s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.14872351823070276, dt = 0.00042378305397372914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.86 us    (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        : 348.41 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324266975308643
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.827009737009971e-19,-1.8311738454738513e-18,-1.510959125027182e-18)
    sum a = (-3.545741026080303e-19,-2.5544159220615255e-18,-7.635998207051978e-18)
    sum e = 0.06836286746004423
    sum de = 6.2341624917916505e-19
Info: cfl dt = 0.000427099311236228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2465e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.332876767252198 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 496.16s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.1491473012846765, dt = 0.000427099311236228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 395.28 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.23 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0728106380652126e-19,-1.832839654971957e-18,-1.5136179753878915e-18)
    sum a = (-5.10778369432649e-18,-1.0537648847567622e-18,-6.947888619968145e-18)
    sum e = 0.06836286797826517
    sum de = 6.071532165918825e-18
Info: cfl dt = 0.00041550400600536604 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0626e+04 | 82944 |      1 | 1.174e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3092145111112867 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 497.34s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.1495744005959127, dt = 0.00041550400600536604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 336.68 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632426697530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.060363028668284e-19,-1.8323717309556354e-18,-1.5163509247609312e-18)
    sum a = (-3.6319887807687424e-18,7.119183153926858e-19,-6.153173707549038e-18)
    sum e = 0.06836286585246341
    sum de = -7.060866648311848e-18
Info: cfl dt = 0.0004182377058334235 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2705e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3111601296287096 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 498.48s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.14998990460191808, dt = 0.0004182377058334235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 364.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.831997391742578e-18,-1.5187820321127443e-18)
    sum a = (-2.165776951065266e-18,-5.430988170880305e-18,-1.1648882519126381e-17)
    sum e = 0.06836286625892997
    sum de = -7.345469718589293e-18
Info: cfl dt = 0.0004211555610391358 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2675e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3192399328062836 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 499.62s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.1504081423077515, dt = 0.0004211555610391358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 390.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324266975308641
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.252024705753706e-19,-1.8352915768174835e-18,-1.5247904178642879e-18)
    sum a = (7.858128760502293e-19,-3.2137770119409435e-18,-8.20626557299779e-18)
    sum e = 0.06836286669946277
    sum de = 5.163512846462215e-18
Info: cfl dt = 0.0004242673780363241 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3080e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3358535325053387 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 500.76s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.15082929786879065, dt = 0.0004242673780363241 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 407.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325472608024694
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-19,-1.8361899909288216e-18,-1.5275974998048845e-18)
    sum a = (-2.692846563050176e-18,-2.634075306600154e-18,-7.503313398149291e-18)
    sum e = 0.06836286717794879
    sum de = -6.2341624917916505e-19
Info: cfl dt = 0.0004275794022487404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2693e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3385943826655813 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 501.90s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.15125356524682698, dt = 0.0004275794022487404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 327.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325472608024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7728705130401514e-19,-1.83761247993844e-18,-1.5306334964040207e-18)
    sum a = (-1.399130242723579e-18,-1.0687384532790608e-18,-4.1836021026434105e-18)
    sum e = 0.06836286770059272
    sum de = -4.87890977618477e-18
Info: cfl dt = 0.0004138727869917016 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2243e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3406902044763633 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 503.05s (max_walltime = 503.36s)  [SPH][rank=0]
---------------- t = 0.15168114464907573, dt = 0.0004138727869917016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 386.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325472608024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-1.8378370834662743e-18,-1.5316848656080942e-18)
    sum a = (2.1082784479396395e-19,-3.460241949817978e-18,-8.454059392402473e-18)
    sum e = 0.06836286523650993
    sum de = 1.8431436932253575e-18
Info: cfl dt = 0.00041650056024400303 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3429e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3190145795611006 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 504.18s > 503.36s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 16):
   -> walltime = 504.18090891800006 >= 503.35633809800004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000016.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (54.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000016.sham                      [Shamrock Dump][rank=0]
              - took 5.74 ms, bandwidth = 2.54 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 504.18090891800006 -> 534.1809089180001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.15209501743606743)
   -> iter = None (current = 428)
   -> walltime = 534.1809089180001 (current = 504.190500681)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 534.18s)      [SPH][rank=0]
---------------- t = 0.15209501743606743, dt = 0.00041650056024400303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (1.2%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 376.19 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
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: 1.6323061342592586
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0665868333667484e-19,-1.839184704633281e-18,-1.5361108450311327e-18)
    sum a = (5.54860555162296e-18,-5.668993042542241e-19,-6.1060226210962205e-18)
    sum e = 0.06836286563104452
    sum de = 1.0936889414947526e-17
Info: cfl dt = 0.0004193089837556329 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2786e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3157818169685918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.84s (niter = 6) global walltime = 505.33s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.15251151799631144, dt = 0.0004193089837556329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 374.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.2%)
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: 1.623251832561728
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.120726057336568e-19,-1.8392782894365458e-18,-1.5381712972888234e-18)
    sum a = (-4.829874262552629e-18,-2.5483516268099945e-18,-7.034976075489034e-18)
    sum e = 0.0683628660599435
    sum de = -6.898236322439022e-18
Info: cfl dt = 0.00042230854095382626 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1954e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3095053882958596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15293082698006707, dt = 0.00042230854095382626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 400.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6232518325617287
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.103929661557534e-20,-1.840682061485511e-18,-1.5413746165858153e-18)
    sum a = (3.310955471650661e-18,-4.267916235910763e-18,-8.008868022454799e-18)
    sum e = 0.06836286652493791
    sum de = 9.744267025213471e-18
Info: cfl dt = 0.0004255042456727663 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2874e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3357336898431467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1533531355210209, dt = 0.0004255042456727663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.03 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 394.14 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.43 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6232518325617282
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-1.8429842476458146e-18,-1.544977986376536e-18)
    sum a = (4.781958843281273e-18,-3.3643362434326554e-18,-4.0225124480051925e-18)
    sum e = 0.06836286703265711
    sum de = -1.0828469197698976e-17
Info: cfl dt = 0.000427981841739541 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2996e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3481023033158153 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15377863976669365, dt = 0.000427981841739541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 373.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
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: 1.6232518325617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.851904955803828e-19,-1.8439013787178053e-18,-1.5458647466214692e-18)
    sum a = (-2.587432640653194e-19,-3.0153023611778757e-18,-8.358469183717985e-18)
    sum e = 0.06836286741941103
    sum de = -1.4934884925987824e-17
Info: cfl dt = 0.0004168852507345553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1636e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3306748184007584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15420662160843318, dt = 0.0004168852507345553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 381.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6231312692901234
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.8452302829241594e-18,-1.550271400657817e-18)
    sum a = (-4.997578230002373e-18,-9.570356321027134e-19,-2.9662663418705458e-18)
    sum e = 0.06836286543669433
    sum de = 1.2183721913305856e-17
Info: cfl dt = 0.00041969172357317753 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3420e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3284581679520877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15462350685916773, dt = 0.00041969172357317753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 315.92 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6231312692901234
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-19,-1.846166130956803e-18,-1.5503707519000887e-18)
    sum a = (5.797765731834009e-19,-7.272961702650864e-18,-9.322798093117747e-18)
    sum e = 0.06836286587537686
    sum de = 1.3552527156068805e-19
Info: cfl dt = 0.00042268420265559266 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3201e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.333407238406632 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.57s (niter = 4) global walltime = 512.18s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.1550431985827409, dt = 0.00042268420265559266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 324.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6231312692901234
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1145022526381037e-19,-1.8497972213234603e-18,-1.5556559677757294e-18)
    sum a = (2.386187879713501e-18,-5.195828277237606e-19,-6.276548564506404e-18)
    sum e = 0.06836286634981611
    sum de = -2.236166980751353e-18
Info: cfl dt = 0.00042587244319901405 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3139e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3417805853098543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1554658827853965, dt = 0.00042587244319901405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 347.69 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6230107060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.8490111089760396e-18,-1.5576922558604253e-18)
    sum a = (-1.178719314075344e-18,2.3739095535252163e-18,-5.784863462856384e-18)
    sum e = 0.0683628668666645
    sum de = -9.215718466126788e-19
Info: cfl dt = 0.00042834893800692224 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1078e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3138043279241411 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15589175522859552, dt = 0.00042834893800692224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 310.93 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6230107060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.846896092422265e-18,-1.5600847383561432e-18)
    sum a = (-2.9803390786783086e-18,-5.676030619747721e-18,-3.901801408876976e-18)
    sum e = 0.06836286726377169
    sum de = -8.524539581167279e-18
Info: cfl dt = 0.00041525828685342524 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3043e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3579753884865071 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15632010416660244, dt = 0.00041525828685342524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 363.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.3%)
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: 1.6230107060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.851463030821566e-18,-1.5612865790423102e-18)
    sum a = (-2.9132574916984108e-18,3.1474441033871608e-18,-8.22635038771774e-18)
    sum e = 0.06836286496132724
    sum de = -1.8756697583999227e-17
Info: cfl dt = 0.0004179617138167124 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3093e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.31738424184695 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 3.43s (niter = 3) global walltime = 516.76s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.15673536245345587, dt = 0.0004179617138167124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.3%)
   patch tree reduce : 2.04 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 441.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317153742283945
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.995651213617895e-19,-1.8482811475105775e-18,-1.5656614958049773e-18)
    sum a = (3.124085336492375e-18,-3.3692026532024027e-18,-8.692318182275785e-18)
    sum e = 0.06836286538848026
    sum de = 8.809142651444724e-20
Info: cfl dt = 0.00042084773341926983 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1046e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2888326109968842 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1571533241672726, dt = 0.00042084773341926983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 366.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317153742283945
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.522720825602804e-19,-1.85116355945112e-18,-1.5693877726034941e-18)
    sum a = (-3.6894872838943694e-18,-2.7906239655007855e-18,-5.0091771679557436e-18)
    sum e = 0.06836286584957366
    sum de = -4.445228907190568e-18
Info: cfl dt = 0.00042392663945705147 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3360e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3399913550690505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15757417190069187, dt = 0.00042392663945705147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 414.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317153742283945
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.941511989648075e-19,-1.851912237877235e-18,-1.5707537598254946e-18)
    sum a = (-2.5299341375275673e-18,-2.1087276549953085e-18,-8.67730002003326e-18)
    sum e = 0.06836286634704347
    sum de = -3.0493186101154812e-18
Info: cfl dt = 0.0004272041668492301 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3006e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3432784291720963 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.43s (niter = 3) global walltime = 520.20s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.15799809854014893, dt = 0.0004272041668492301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 462.24 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317153742283947
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.174865281306388e-19,-1.852043256601805e-18,-1.5752575170610638e-18)
    sum a = (-3.449910187537592e-18,-5.660008901428862e-19,-9.734611122038039e-18)
    sum e = 0.06836286688784778
    sum de = 8.612631007681726e-18
Info: cfl dt = 0.0004155777091672955 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1038e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3171766904922269 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15842530270699817, dt = 0.0004155777091672955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 352.03 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317153742283947
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.593656445351658e-19,-1.852192992287028e-18,-1.5795198444562478e-18)
    sum a = (4.1159345154094324e-18,-2.7606768284561883e-18,-4.129478452685914e-18)
    sum e = 0.06836286485586898
    sum de = -4.228388472693467e-18
Info: cfl dt = 0.0004182713554817492 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0326e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2684853467841888 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15884088041616548, dt = 0.0004182713554817492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 428.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
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: 1.6317153742283945
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406634e-20,-1.8537090660999108e-18,-1.5800734247229992e-18)
    sum a = (-3.449910187537592e-19,-3.596651159056118e-19,-4.125624979355027e-18)
    sum e = 0.06836286528313076
    sum de = -5.231275482242559e-18
Info: cfl dt = 0.0004211475534060936 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.8302e+04 | 82944 |      1 | 1.214e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2399630711079919 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.30s (niter = 2) global walltime = 523.76s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.15925915177164723, dt = 0.0004211475534060936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 346.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.631715374228395
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.360303153693346e-19,-1.8535967643359934e-18,-1.5817734374618403e-18)
    sum a = (3.0042967883139865e-18,-6.125237675416678e-18,-6.497173854917173e-18)
    sum e = 0.06836286574298593
    sum de = -5.116079001415974e-18
Info: cfl dt = 0.0004242160493223683 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1725e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3110539458958694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15968029932505332, dt = 0.0004242160493223683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.5%)
   patch tree reduce : 1.88 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 404.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
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: 1.631715374228395
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.724955093768796e-19,-1.8571717038206923e-18,-1.585054656261567e-18)
    sum a = (-2.7072211888315827e-18,-3.7016158743974306e-18,-9.80510533914028e-18)
    sum e = 0.06836286623713743
    sum de = 5.624298769768554e-19
Info: cfl dt = 0.000427482398547261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2977e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3436569464745038 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 526.06s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.16010451537437567, dt = 0.000427482398547261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 377.70 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.11 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317153742283947
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130426e-20,-1.858126268813989e-18,-1.5899498511042894e-18)
    sum a = (-3.0665868333667483e-18,-3.5274732724830984e-18,-6.1979171884611314e-18)
    sum e = 0.06836286677308931
    sum de = 1.3349239248727773e-18
Info: cfl dt = 0.0004292074605058642 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3264e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.359326198520898 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 527.19s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.16053199777292293, dt = 0.0004292074605058642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 377.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
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: 1.6317153742283952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.874925156281327e-20,-1.860185134485805e-18,-1.5918125511244459e-18)
    sum a = (-1.5189187909019676e-18,-4.60527073471815e-18,-3.9880523303097335e-18)
    sum e = 0.06836286704008339
    sum de = 1.6534083130403943e-17
Info: cfl dt = 0.000416679204286319 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1443e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3308982734840082 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 528.35s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.1609612052334288, dt = 0.000416679204286319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 364.97 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.631715374228395
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.558188635477232e-19,-1.8617573591806462e-18,-1.5930066670801396e-18)
    sum a = (-8.092914314931934e-18,-3.0980313272635752e-18,-3.679830148404477e-18)
    sum e = 0.06836286485212588
    sum de = -9.012430558785756e-19
Info: cfl dt = 0.0004194600115873128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2079e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3035491755479856 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 529.50s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.1613778844377151, dt = 0.0004194600115873128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (0.6%)
   patch tree reduce : 1.68 us    (0.2%)
   gen split merge   : 851.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.1%)
   LB compute        : 903.00 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 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: 1.6317153742283947
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.439337596457023e-19,-1.862992678583736e-18,-1.5945078252375242e-18)
    sum a = (-4.9065389333867974e-18,-2.5592823318312728e-18,-7.340065332073579e-18)
    sum e = 0.06836286528738084
    sum de = 2.757939276260002e-18
Info: cfl dt = 0.0004224255281368458 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2716e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323847067787768 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 530.65s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.16179734444930244, dt = 0.0004224255281368458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1.80 us    (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        : 401.49 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.31 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.631715374228395
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.858128760502293e-19,-1.8639846774983383e-18,-1.5983620853947879e-18)
    sum a = (-9.827452492555e-18,7.157365753658719e-19,-4.601478121258028e-18)
    sum e = 0.06836286575361039
    sum de = 9.337691210531407e-18
Info: cfl dt = 0.00042558593134103806 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1946e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.319094442795151 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 531.80s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.16221976997743928, dt = 0.00042558593134103806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.34 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 431.88 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.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: 1.6317153742283947
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.887372765678255e-19,-1.8636103382852806e-18,-1.5997402459336072e-18)
    sum a = (-3.354079348994881e-18,-5.909318817325133e-18,-9.003455275041968e-18)
    sum e = 0.06836286625779583
    sum de = -3.028989819381378e-18
Info: cfl dt = 0.0004284063009152694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2655e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3420521941818848 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 532.94s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.16264535590878032, dt = 0.0004284063009152694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 347.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6230107060185184
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.235228309974672e-19,-1.867260145612591e-18,-1.6045499906816336e-18)
    sum a = (-5.534230925841553e-18,-4.564991835393167e-18,-4.83397911987132e-18)
    sum e = 0.06836286670567245
    sum de = 4.4824983568697574e-18
Info: cfl dt = 0.00041692082606854575 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2120e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3410037910354242 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 534.09s (max_walltime = 534.18s)  [SPH][rank=0]
---------------- t = 0.16307376220969558, dt = 0.0002595711236377529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 336.94 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469138
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.276919924547563e-19,-1.8684205971730692e-18,-1.6049183583391418e-18)
    sum a = (7.618551664145516e-19,-1.1327504587118872e-18,-4.504357299857043e-18)
    sum e = 0.06836284320480289
    sum de = -6.796592368768506e-18
Info: cfl dt = 0.0004186655741874543 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1000e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7998932914377972 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 535.26s > 534.18s               [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 6):
   -> t = 0.16333333333333333 >= 0.16333333333333333
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000006.npy
--------------------------------
[Simulation] Triggering callback "checkpoint" (counter = 17):
   -> walltime = 535.2623437450001 >= 534.1809089180001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000017.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.77 us    (73.2%)
Info: dump to _to_trash/sod_128/dump/dump_0000017.sham                      [Shamrock Dump][rank=0]
              - took 5.26 ms, bandwidth = 2.78 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.16333333333333333 -> 0.19055555555555553
[Simulation] Advancing callback "checkpoint"
   -> walltime = 535.2623437450001 -> 565.2623437450001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.16333333333333333)
   -> iter = None (current = 455)
   -> walltime = 565.2623437450001 (current = 536.332357673)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 565.26s)      [SPH][rank=0]
---------------- t = 0.16333333333333333, dt = 0.0004186655741874543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.4%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 352.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469138
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.426889987060093e-19,-1.8677842205108715e-18,-1.6067550540489725e-18)
    sum a = (5.364131187428242e-18,-2.3084750590827713e-18,-3.4070364527592484e-18)
    sum e = 0.06836286496734417
    sum de = -5.505714157152952e-18
Info: cfl dt = 0.00042151144623171836 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.8039e+04 | 82944 |      1 | 1.219e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2363520700390447 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.10s (niter = 5) global walltime = 537.55s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.1637519989075208, dt = 0.00042151144623171836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 354.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.8685703328582922e-18,-1.6079682047569377e-18)
    sum a = (-3.3444962651406098e-18,8.037811582769875e-19,-4.407163621548283e-19)
    sum e = 0.06836286541002548
    sum de = 3.059483005482533e-18
Info: cfl dt = 0.0004245901008060985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0719e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2937891959535968 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16417351035375252, dt = 0.0004245901008060985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 366.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
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: 1.6228901427469136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.389547158869308e-19,-1.8684393141337223e-18,-1.6075118741755276e-18)
    sum a = (-6.135569437697065e-18,-2.7615752425675264e-18,-3.571978119662735e-18)
    sum e = 0.06836286588617485
    sum de = -4.997494388800372e-18
Info: cfl dt = 0.0004278656352542934 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3065e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.346476141836495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1645981004545586, dt = 0.0004278656352542934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.5%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 390.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1082784479396395e-19,-1.870198708435092e-18,-1.6097491090437643e-18)
    sum a = (4.2644723151506344e-19,-9.773397910189503e-18,-7.175982936168187e-18)
    sum e = 0.0683628664035412
    sum de = -3.367802998283098e-18
Info: cfl dt = 0.0004294838025135978 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2910e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3539869145993426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1650259660898129, dt = 0.0004294838025135978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 402.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622890142746914
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.8756640609457313e-18,-1.61355498479847e-18)
    sum a = (-1.358402136342927e-18,-2.7507942732314715e-18,-6.2055834509904115e-18)
    sum e = 0.06836286663405206
    sum de = -8.040036735337819e-18
Info: cfl dt = 0.00041701023975539397 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2421e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3499890284142984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1654554498923265, dt = 0.00041701023975539397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 358.03 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.481029211029913e-19,-1.8757763627096483e-18,-1.615935020102284e-18)
    sum a = (-2.2112965993730537e-18,-8.624925204529202e-18,-1.0008343841276028e-17)
    sum e = 0.06836286446533317
    sum de = 6.640738306473715e-19
Info: cfl dt = 0.0004197999462199742 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3599e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.332091652252911 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.63s (niter = 4) global walltime = 543.28s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.1658724601320819, dt = 0.0004197999462199742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 356.29 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469133
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.660243278718407e-19,-1.8799689618958918e-18,-1.6209120110666381e-18)
    sum a = (-1.030181514334142e-19,-1.4624684375729019e-18,-9.726011198341875e-18)
    sum e = 0.068362864883628
    sum de = -8.334804200982315e-18
Info: cfl dt = 0.0004227743211667248 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3688e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3426279906256815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16629226007830186, dt = 0.0004227743211667248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.5%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 425.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469138
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.162417671909459e-19,-1.879351302194347e-18,-1.6249916051198053e-18)
    sum a = (7.450847696695771e-19,-8.120166209642518e-18,7.064178404362916e-19)
    sum e = 0.06836286533334185
    sum de = 8.395790573184625e-18
Info: cfl dt = 0.00042594350627000625 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1569e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3132570515958866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16671503439946858, dt = 0.00042594350627000625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.07 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 376.25 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228901427469133
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4039217846507146e-18,-1.8848540886262917e-18,-1.6224549392120573e-18)
    sum a = (1.492565310302722e-18,-5.0962540465643204e-18,-8.399726481733621e-18)
    sum e = 0.06836286582081254
    sum de = 1.188895444766136e-17
Info: cfl dt = 0.0004286717693875987 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3430e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3575111433368003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1671409779057386, dt = 0.0004286717693875987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.0%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 343.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
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: 1.6318238811728392
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-20,-1.885995823226117e-18,-1.627993733884593e-18)
    sum a = (-1.324861342852978e-18,-5.810193793707517e-18,5.642701537557348e-19)
    sum e = 0.06836286623557679
    sum de = -1.099279358946631e-17
Info: cfl dt = 0.0004173392811387294 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1561e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.33143409332964 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 3.46s (niter = 3) global walltime = 547.85s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.1675696496751262, dt = 0.0004173392811387294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.1%)
   patch tree reduce : 1.68 us    (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        : 446.79 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6318238811728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0541392239698197e-18,-1.8887472164420896e-18,-1.625817850410759e-18)
    sum a = (1.881878091882485e-18,-3.748632879557448e-18,-7.150457958658124e-18)
    sum e = 0.06836286427257017
    sum de = -8.077306185017008e-18
Info: cfl dt = 0.0004201223647918435 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3118e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3244438349377263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16798698895626493, dt = 0.0004201223647918435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.05 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 430.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6315827546296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0728106380652126e-19,-1.8897766492779977e-18,-1.6304592722977087e-18)
    sum a = (-1.926199854708489e-18,-8.317517842766413e-18,-4.879569357797354e-18)
    sum e = 0.06836286468595303
    sum de = -3.750661890442042e-18
Info: cfl dt = 0.00042309003653028036 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2678e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.325237107321641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16840711132105676, dt = 0.00042309003653028036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (1.8%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 402.55 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6315827546296295
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.545741026080303e-19,-1.8940628332675055e-18,-1.6320541063816599e-18)
    sum a = (4.251295574851012e-18,-6.132125516936936e-18,-2.2230771865468927e-18)
    sum e = 0.06836286513143529
    sum de = -9.474910547986604e-18
Info: cfl dt = 0.0004262520012311828 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0397e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.292717114206111 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.46s (niter = 3) global walltime = 551.31s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.16883020135758706, dt = 0.0004262520012311828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 358.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6315827546296293
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.8967206416802133e-18,-1.6324174042203128e-18)
    sum a = (2.396968849049556e-18,-3.1398075834407883e-18,-7.357979735188832e-18)
    sum e = 0.06836286561564218
    sum de = 2.028982721852951e-17
Info: cfl dt = 0.0004290386290718982 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2533e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3419062857103858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16925645335881823, dt = 0.0004290386290718982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 416.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6315827546296293
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1116377270954463e-18,-1.8963837363884616e-18,-1.6366824245460098e-18)
    sum a = (1.808807077493668e-19,-4.097367290441782e-18,-2.005117516492964e-18)
    sum e = 0.06836286604013338
    sum de = 5.210946691508456e-18
Info: cfl dt = 0.00041579609455835823 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9497e+04 | 82944 |      1 | 1.193e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2941303064199459 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16968549198789012, dt = 0.00041579609455835823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.17 us    (2.1%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 371.76 us  (94.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    (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: 1.63158275462963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.851904955803828e-19,-1.8986484886274594e-18,-1.6363654520846534e-18)
    sum a = (6.42066618236163e-19,-1.8037160641960866e-18,-9.351860921161088e-18)
    sum e = 0.06836286377657813
    sum de = 8.394096507290116e-18
Info: cfl dt = 0.0004184797661532399 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3036e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3180542173145833 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 554.79s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.17010128808244848, dt = 0.0004184797661532399 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 409.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
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: 1.6317033179012348
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.708158697989762e-20,-1.89956561969945e-18,-1.6418200340964747e-18)
    sum a = (4.791541927135544e-19,1.0149084744413976e-18,-4.96957647128499e-18)
    sum e = 0.06836286417359576
    sum de = -1.808584748977382e-17
Info: cfl dt = 0.00042134481566036107 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2774e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3218071819922512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17051976784860173, dt = 0.00042134481566036107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 362.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 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: 1.6317033179012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.391422177185667e-19,-1.898124413729179e-18,-1.6429766191970014e-18)
    sum a = (-2.576651671317139e-18,-4.2288352220675635e-18,-4.1174983848468903e-19)
    sum e = 0.06836286460282877
    sum de = -1.3213713977167085e-19
Info: cfl dt = 0.000424401469292815 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0164e+04 | 82944 |      1 | 1.182e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.283120031982942 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 557.11s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.1709411126642621, dt = 0.000424401469292815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 378.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317033179012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.276919924547563e-19,-1.900595052535358e-18,-1.6421950507844014e-18)
    sum a = (-6.432645037179469e-19,-1.2598760554662022e-18,-4.449528256108713e-18)
    sum e = 0.06836286506663646
    sum de = 4.306315503840863e-18
Info: cfl dt = 0.0004276553279643178 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3491e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3537204933789555 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 558.24s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.1713655141335549, dt = 0.0004276553279643178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 342.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317033179012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5395172213818386e-19,-1.902242145072811e-18,-1.6449488534622265e-18)
    sum a = (3.188771152508705e-18,-3.3229343264685e-18,-7.819036831490586e-18)
    sum e = 0.06836286557263681
    sum de = -7.329376092591461e-18
Info: cfl dt = 0.000415908673969026 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1095e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3196197961351963 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 559.41s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.17179316946151924, dt = 0.000415908673969026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 35.73 us   (8.0%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 396.60 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6317033179012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-19,-1.9031779931054546e-18,-1.648927538956682e-18)
    sum a = (-5.459962025970953e-18,-6.4967319104549065e-18,-5.93824597066125e-18)
    sum e = 0.0683628635820213
    sum de = -1.134346522962959e-17
Info: cfl dt = 0.0004185797354607994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3340e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3239000290503125 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 560.54s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.17220907813548825, dt = 0.0004185797354607994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 438.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
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: 1.6227695794753085
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-19,-1.9064534612197075e-18,-1.6510198690903803e-18)
    sum a = (-5.9636728710610766e-18,-5.334034314698422e-18,-3.059276262452327e-18)
    sum e = 0.06836286398207476
    sum de = -6.3552882032490154e-18
Info: cfl dt = 0.0004214321342928059 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2769e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.322027882270811 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 561.68s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.17262765787094905, dt = 0.0004214321342928059 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 426.08 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.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622769579475309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.474805406331449e-19,-1.9084187420882593e-18,-1.6516908524124942e-18)
    sum a = (-1.8660061092488484e-18,-2.0093780278498574e-18,-8.030693583652384e-18)
    sum e = 0.06836286441469899
    sum de = 9.012430558785756e-18
Info: cfl dt = 0.0004244755385489042 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3313e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3409842823593479 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 562.81s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.17304909000524185, dt = 0.0004244755385489042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 373.97 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.528944630301269e-19,-1.9086994964980523e-18,-1.656138304155749e-18)
    sum a = (-2.0145439089900503e-18,-4.115560176196375e-18,-7.611962882370895e-18)
    sum e = 0.06836286488171461
    sum de = -2.046982171982105e-17
Info: cfl dt = 0.000427715421517038 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3075e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3462937495090188 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 563.95s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.17347356554379076, dt = 0.000427715421517038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 367.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622649016203704
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3272571138165458e-18,-1.9111514183435787e-18,-1.659307629979992e-18)
    sum a = (-4.612458047608853e-18,-7.367594655711792e-18,-4.386147684733313e-18)
    sum e = 0.06836286539084284
    sum de = 3.678240573451799e-18
Info: cfl dt = 0.00042968510680025925 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3238e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3595878532416918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 565.08s (max_walltime = 565.26s)  [SPH][rank=0]
---------------- t = 0.1739012809653078, dt = 0.00042968510680025925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 385.18 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7728705130401514e-19,-1.915549904097004e-18,-1.6605203832788344e-18)
    sum a = (-6.41767146865717e-19,-5.389062179017869e-18,-5.305492303575231e-18)
    sum e = 0.06836286568877956
    sum de = 7.186651040979111e-18
Info: cfl dt = 0.00041703386967360784 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3509e+04 | 82944 |      1 | 1.128e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3709058614866836 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 566.21s > 565.26s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 18):
   -> walltime = 566.210804099 >= 565.2623437450001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000018.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (54.9%)
Info: dump to _to_trash/sod_128/dump/dump_0000018.sham                      [Shamrock Dump][rank=0]
              - took 5.13 ms, bandwidth = 2.85 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 566.210804099 -> 596.210804099

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.17433096607210805)
   -> iter = None (current = 481)
   -> walltime = 596.210804099 (current = 566.219757992)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 596.21s)      [SPH][rank=0]
---------------- t = 0.17433096607210805, dt = 0.00041703386967360784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 326.76 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 32.52 us   (96.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.916560619972259e-18,-1.6629496769178217e-18)
    sum a = (-7.197794388668925e-19,-3.240654567438469e-18,-9.1812916995765e-19)
    sum e = 0.06836286356094853
    sum de = -1.3519281112889074e-17
Info: cfl dt = 0.00041979396006684624 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1084e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2866550158241583 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.01s (niter = 6) global walltime = 567.39s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.17474799994178164, dt = 0.00041979396006684624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 361.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.558188635477232e-19,-1.917440317122944e-18,-1.6623722234983658e-18)
    sum a = (-9.834639805445705e-19,-5.831081921796123e-18,-4.398768916301995e-18)
    sum e = 0.06836286398102587
    sum de = 1.1302807648161384e-17
Info: cfl dt = 0.00042273759033927395 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3220e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3340858753961915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17516779390184847, dt = 0.00042273759033927395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 364.84 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.92086552092242e-18,-1.6649934058916422e-18)
    sum a = (-3.474766311284608e-18,-4.875393910860416e-19,-4.7965521169477655e-18)
    sum e = 0.06836286443377977
    sum de = -1.3980067036195414e-17
Info: cfl dt = 0.0004258748789457805 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3263e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3442330137346232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17559053149218776, dt = 0.0004258748789457805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 330.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.126949862035032e-19,-1.919985823771735e-18,-1.6671133481270107e-18)
    sum a = (-5.260064886198267e-18,-1.5895940343272168e-18,-3.3176575022988713e-18)
    sum e = 0.06836286492434668
    sum de = 2.632790158303179e-18
Info: cfl dt = 0.00042889947193773623 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3369e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3561629885491289 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17601640637113353, dt = 0.00042889947193773623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 343.87 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.629124255226085e-18,-1.9206596343552382e-18,-1.6682192000151847e-18)
    sum a = (4.928624946957188e-18,-2.6882047568082633e-18,-5.0987162286821555e-18)
    sum e = 0.06836286540112785
    sum de = -1.3047589640386836e-17
Info: cfl dt = 0.0004172539668053099 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2858e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3562836671606762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17644530584307128, dt = 0.0004172539668053099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 331.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.647795669321478e-19,-1.9222880099320383e-18,-1.6707241858668807e-18)
    sum a = (4.887372765678255e-19,2.175659506289983e-19,-4.221477345581206e-18)
    sum e = 0.06836286345384385
    sum de = -8.674676171068103e-19
Info: cfl dt = 0.00042000731516184505 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1778e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2999007275910883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17686255980987658, dt = 0.00042000731516184505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 341.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4916018021104833e-19,-1.9208093700404612e-18,-1.6723277389224925e-18)
    sum a = (-9.019778206462216e-18,2.2363024588052923e-19,-5.46323295518758e-18)
    sum e = 0.06836286387404027
    sum de = 6.846779070893323e-18
Info: cfl dt = 0.0004229442469542178 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1454e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.302568612453168 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.59s (niter = 4) global walltime = 574.24s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.17728256712503843, dt = 0.0004229442469542178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 317.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.366526958391809e-19,-1.9209778226863372e-18,-1.6748898438597433e-18)
    sum a = (4.618896682073442e-18,-1.0345687699111755e-17,-6.1524564261131674e-18)
    sum e = 0.06836286432639667
    sum de = 1.132006594446169e-17
Info: cfl dt = 0.0004260745247325635 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3072e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3413766054267884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17770551137199264, dt = 0.0004260745247325635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (1.9%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 375.43 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.01 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.63135368441358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6894872838943693e-19,-1.9281464186163876e-18,-1.677678746278855e-18)
    sum a = (-3.724375698551325e-18,-2.5184044897653973e-18,-5.288860384766466e-18)
    sum e = 0.06836286481560215
    sum de = -1.1950787852810923e-17
Info: cfl dt = 0.0004291985733014783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1044e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3137986974393723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1781315858967252, dt = 0.0004291985733014783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.5%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 444.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (77.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135805
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5189187909019676e-18,-1.9272480045050495e-18,-1.6797551431106308e-18)
    sum a = (7.00448561904605e-18,6.193816619248806e-19,-5.3085626897336366e-18)
    sum e = 0.06836286530822976
    sum de = 5.624669346682978e-18
Info: cfl dt = 0.00041573215845927075 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1363e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3293831956670272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17856078447002668, dt = 0.00041573215845927075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 370.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135808
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.25824851045217e-19,-1.926761363528075e-18,-1.6819837765071222e-18)
    sum a = (-5.242545811027177e-18,-3.5003711134577384e-18,-3.975472401369897e-18)
    sum e = 0.0683628630738561
    sum de = 4.225635615614891e-19
Info: cfl dt = 0.00041838697733349135 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3042e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3179563154696279 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 578.85s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.17897651662848596, dt = 0.00041838697733349135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.4%)
   patch tree reduce : 1.84 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 431.64 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.25 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135808
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.928988681845767e-18,-1.6833593181878448e-18)
    sum a = (-6.239336267556593e-18,-7.855134046797833e-19,-4.151026699413912e-18)
    sum e = 0.0683628634747275
    sum de = 3.210731326126629e-18
Info: cfl dt = 0.0004212222453362539 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2871e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3232795348695015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17939490360581944, dt = 0.0004212222453362539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 370.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135805
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.102054643241175e-19,-1.9279030981279003e-18,-1.6851398827597959e-18)
    sum a = (-9.190776358986867e-19,-1.7144735958031868e-20,-7.243835309236656e-18)
    sum e = 0.06836286390610759
    sum de = 2.3513105220187343e-18
Info: cfl dt = 0.0004242482268180004 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1069e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2992944386981233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1798161258511557, dt = 0.0004242482268180004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 385.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974405e-19,-1.9282212864589993e-18,-1.6888693059224003e-18)
    sum a = (2.8341970499006744e-18,-3.524703162306474e-18,-5.0601754357893e-18)
    sum e = 0.06836286436913051
    sum de = -7.718217154940388e-18
Info: cfl dt = 0.00042747008797865745 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0573e+04 | 82944 |      1 | 1.175e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2995013780926408 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.45s (niter = 3) global walltime = 582.33s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.1802403740779737, dt = 0.00042747008797865745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 364.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.210333091180815e-19,-1.930879094871707e-18,-1.690585971629234e-18)
    sum a = (-2.925910157099753e-18,-3.735231535729991e-18,-3.715950704590717e-18)
    sum e = 0.06836286487255173
    sum de = 5.633298494833131e-19
Info: cfl dt = 0.00041577757591448433 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9700e+04 | 82944 |      1 | 1.190e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.293173285924278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18066784416595236, dt = 0.00041577757591448433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 396.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135805
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.724955093768796e-19,-1.932189282117408e-18,-1.6918296587316448e-18)
    sum a = (1.3937397580555515e-18,-8.342748305726487e-18,-8.070148543784663e-18)
    sum e = 0.06836286293937893
    sum de = -1.2198333231645993e-18
Info: cfl dt = 0.00041841954992915474 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1951e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2984289867300012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18108362174186685, dt = 0.00041841954992915474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.6%)
   patch tree reduce : 1.88 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        : 360.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708158697989762e-20,-1.9364005982643047e-18,-1.696115529768265e-18)
    sum a = (8.838897498712849e-19,-6.359386853184123e-18,-4.6008328536969254e-18)
    sum e = 0.0683628633347551
    sum de = 8.378770504900734e-18
Info: cfl dt = 0.0004212420135400787 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2857e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3231161140201144 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 585.82s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.181502041291796, dt = 0.0004212420135400787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 438.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
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: 1.6313536844135808
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.091482052160606e-19,-1.938478180896774e-18,-1.697333813906113e-18)
    sum a = (3.2706391384043724e-18,-1.2769833575029282e-18,-4.176007447284194e-18)
    sum e = 0.06836286376026258
    sum de = -3.2937934945167537e-18
Info: cfl dt = 0.00042425458269419156 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0476e+04 | 82944 |      1 | 1.177e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2885207928275269 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18192328330533608, dt = 0.00042425458269419156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.7%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 386.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313536844135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708158697989762e-20,-1.9380102568804518e-18,-1.6990063534401612e-18)
    sum a = (-8.819768764925613e-18,1.1379163398520803e-18,-1.349981323753653e-18)
    sum e = 0.06836286421694489
    sum de = -6.909988904582175e-18
Info: cfl dt = 0.0004274622841897333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1650e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3193474936784468 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 588.15s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.18234753788803026, dt = 0.0004274622841897333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 326.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622649016203704
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.343506757914311e-19,-1.9362882965003873e-18,-1.698975211208724e-18)
    sum a = (-2.0063084463027863e-18,-6.949719792175744e-18,-3.401912594096255e-18)
    sum e = 0.06836286471361946
    sum de = 1.1199893145069986e-17
Info: cfl dt = 0.00042977337402138157 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3002e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3544048091001557 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 589.29s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.18277500017222, dt = 0.00042977337402138157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 340.20 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037042
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.587432640653194e-19,-1.9412857249947046e-18,-1.7008795076380141e-18)
    sum a = (-2.3722624609877632e-18,-8.134428533660007e-18,-3.969403219488847e-18)
    sum e = 0.06836286506265964
    sum de = 9.650775763660278e-18
Info: cfl dt = 0.0004168958986141091 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2119e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3452597265641801 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 590.44s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.1832047735462414, dt = 0.0004168958986141091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1.64 us    (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        : 361.21 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622649016203704
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1212208109497173e-18,-1.9448232305580978e-18,-1.7026720597308296e-18)
    sum a = (5.355446517685309e-18,-1.7262652810144972e-18,-4.7601001947583805e-18)
    sum e = 0.06836286293577616
    sum de = -5.79878755690294e-18
Info: cfl dt = 0.0004196265852046571 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3153e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323660624010975 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 591.58s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.1836216694448555, dt = 0.0004196265852046571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 370.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708158697989762e-20,-1.945216286731808e-18,-1.7048360580786043e-18)
    sum a = (5.342569248756132e-19,5.59674557442215e-19,-4.012308505549342e-18)
    sum e = 0.06836286334057935
    sum de = 6.257455897841144e-18
Info: cfl dt = 0.00042253985020832246 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2896e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3276609819787228 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 592.71s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.18404129603006017, dt = 0.00042253985020832246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 369.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622649016203704
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.960183403743468e-19,-1.9437937977221897e-18,-1.7063650866654103e-18)
    sum a = (-1.3003046904764083e-18,-5.402126617553575e-18,-2.414684701363043e-18)
    sum e = 0.06836286377588728
    sum de = -2.289297122367879e-17
Info: cfl dt = 0.0004256458309090821 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3089e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3404078333690879 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 593.85s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.1844638358802685, dt = 0.0004256458309090821 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.99 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.33 us    (0.6%)
   LB compute        : 379.86 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-20,-1.9473500202462356e-18,-1.7070604003492537e-18)
    sum a = (-5.037707393642133e-18,-3.485771884148497e-18,-2.6006525024325447e-18)
    sum e = 0.06836286424617923
    sum de = -1.6504013460776415e-17
Info: cfl dt = 0.00042895163790972565 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3270e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3535963403061095 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 594.98s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.18488948171117758, dt = 0.00042895163790972565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 369.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.9488848110197714e-18,-1.7082070442984943e-18)
    sum a = (-3.0258587269860962e-18,-9.470183147612957e-18,-8.70475236637554e-18)
    sum e = 0.06836286475394887
    sum de = -2.0159384144652348e-18
Info: cfl dt = 0.00041705962568892353 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3142e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.361733352404875 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 596.12s (max_walltime = 596.21s)  [SPH][rank=0]
---------------- t = 0.18531843334908732, dt = 0.00041705962568892353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 372.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
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: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4978256068089474e-19,-1.9536763529469065e-18,-1.713168957473319e-18)
    sum a = (-3.48944040843646e-18,-3.4296210021898775e-18,-1.6095676743168142e-18)
    sum e = 0.06836286279709587
    sum de = -1.3772755722354924e-18
Info: cfl dt = 0.00041978311969579225 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3133e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323828766256062 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 597.25s > 596.21s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 19):
   -> walltime = 597.253978787 >= 596.210804099
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000019.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (55.4%)
Info: dump to _to_trash/sod_128/dump/dump_0000019.sham                      [Shamrock Dump][rank=0]
              - took 5.02 ms, bandwidth = 2.91 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 597.253978787 -> 627.253978787

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.18573549297477623)
   -> iter = None (current = 508)
   -> walltime = 627.253978787 (current = 597.262740397)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 627.25s)      [SPH][rank=0]
---------------- t = 0.18573549297477623, dt = 0.00041978311969579225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (1.0%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 359.22 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.749850312562653e-19,-1.954368880491063e-18,-1.7123605953859792e-18)
    sum a = (4.387854519774375e-18,-5.965769170654199e-18,-5.402787068750711e-18)
    sum e = 0.06836286319773137
    sum de = 3.3068166260807885e-18
Info: cfl dt = 0.00042268923936192526 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1314e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2993244498217484 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.98s (niter = 6) global walltime = 598.43s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.18615527609447202, dt = 0.00042268923936192526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 316.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-1.9571202737070354e-18,-1.7153936415297947e-18)
    sum a = (2.1304393293526412e-18,-3.249264369338791e-18,-1.1235262697752953e-18)
    sum e = 0.0683628636288894
    sum de = 1.9786689647860456e-17
Info: cfl dt = 0.00042578778140757765 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3430e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3471446296073857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18657796533383394, dt = 0.00042578778140757765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 321.28 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0062238046984643e-19,-1.9573635941955228e-18,-1.715026727254717e-18)
    sum a = (3.6894872838943694e-18,-3.33446397423067e-18,-2.9476627666263404e-18)
    sum e = 0.06836286409490656
    sum de = 2.3026590671108155e-18
Info: cfl dt = 0.0004290857543689128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1638e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3239059827827304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18700375311524153, dt = 0.0004290857543689128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 408.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
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: 1.6226490162037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4853779974120188e-19,-1.9587112153625295e-18,-1.71665285170831e-18)
    sum a = (1.3296528847801136e-18,-4.863415056042578e-19,-5.3771083946960465e-18)
    sum e = 0.06836286459865443
    sum de = -1.4121733296623695e-17
Info: cfl dt = 0.0004155786968672041 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1098e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3241036765118108 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18743283886961046, dt = 0.0004155786968672041 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.0%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 328.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6315827546296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1686414766079237e-19,-1.95910427153624e-18,-1.7194055250570747e-18)
    sum a = (2.7293820702445844e-18,-1.0178058599504623e-17,-2.9520780014034103e-18)
    sum e = 0.06836286239531397
    sum de = 1.4965378112088978e-17
Info: cfl dt = 0.0004182052883640158 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2875e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3144616040874995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18784841756647766, dt = 0.0004182052883640158 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.4%)
   patch tree reduce : 1.55 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 439.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.63134162808642
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8749251562813265e-19,-1.9643450205190444e-18,-1.720138608283438e-18)
    sum a = (-3.765553011987646e-18,-3.791681889059057e-18,-2.9776427298566696e-18)
    sum e = 0.06836286277751791
    sum de = 2.101488742137919e-18
Info: cfl dt = 0.00042101152344980813 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0913e+04 | 82944 |      1 | 1.170e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2871583484266358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18826662285484166, dt = 0.00042101152344980813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 362.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
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: 1.63134162808642
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8687013515828623e-19,-1.9655054720795225e-18,-1.7214089643844996e-18)
    sum a = (1.3182729727031667e-18,-1.8327647871293457e-18,-7.064879728178806e-18)
    sum e = 0.06836286318956099
    sum de = -1.2089277739687002e-17
Info: cfl dt = 0.00042400764737741264 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3187e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.33734651167538 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 4.61s (niter = 4) global walltime = 605.33s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.18868763437829147, dt = 0.00042400764737741264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.77 us   (2.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 375.85 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
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: 1.63110050154321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8394573464069e-19,-1.9667033575613066e-18,-1.7252437417398714e-18)
    sum a = (3.767349840210322e-18,-3.855731328413189e-18,-5.879483199870718e-19)
    sum e = 0.06836286363257138
    sum de = -6.833438301974068e-18
Info: cfl dt = 0.0004271986896070953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9724e+04 | 82944 |      1 | 1.190e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2831295230917903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18911164202566888, dt = 0.0004271986896070953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 314.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6311005015432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.9681445635315776e-18,-1.7241186196709371e-18)
    sum a = (-9.39860949007637e-18,-5.6003766647888074e-18,-1.392629291376458e-18)
    sum e = 0.06836286411485633
    sum de = -4.765407361252694e-18
Info: cfl dt = 0.00041555019600936585 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1385e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323583875232262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18953884071527596, dt = 0.00041555019600936585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 367.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6311005015432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.748912803404474e-18,-1.9702595800853524e-18,-1.7248834606827487e-18)
    sum a = (-1.358402136342927e-18,-2.2973946183762704e-18,-4.348269315620888e-18)
    sum e = 0.0683628622248642
    sum de = -1.4233541645661263e-17
Info: cfl dt = 0.0004181632009863342 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2049e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2994757138839361 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18995439091128533, dt = 0.0004181632009863342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.1%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 324.50 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6311005015432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-20,-1.9711579941966905e-18,-1.7273226244126231e-18)
    sum a = (-1.7920366807486937e-18,-9.610036277611226e-19,-3.137348969094124e-18)
    sum e = 0.06836286260392535
    sum de = -4.986059444012439e-18
Info: cfl dt = 0.0004209559969896568 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2931e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3236543423371252 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.47s (niter = 3) global walltime = 609.97s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19037255411227166, dt = 0.00018300144328387002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 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: 1.63110050154321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.756074117261118e-19,-1.970746221062327e-18,-1.7276258958112874e-18)
    sum a = (7.642509373781193e-19,-3.400871750627064e-19,-4.847221432743181e-18)
    sum e = 0.06836283589066373
    sum de = -1.5731519412880493e-17
Info: cfl dt = 0.00042227925052117543 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3207e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5814659193098005 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 521                                                     [SPH][rank=0]
Info: time since start : 611.106007984 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 7):
   -> t = 0.19055555555555553 >= 0.19055555555555553
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000007.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.19055555555555553 -> 0.21777777777777776

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.19055555555555553)
   -> iter = None (current = 520)
   -> walltime = 627.253978787 (current = 612.162571298)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 627.25s)      [SPH][rank=0]
---------------- t = 0.19055555555555553, dt = 0.00042227925052117543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 354.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.630979938271605
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4019947682662363e-19,-1.971307729881913e-18,-1.729846943849182e-18)
    sum a = (1.4003281282053629e-18,-2.200515630036999e-18,-2.5284771309940678e-18)
    sum e = 0.06836286320429658
    sum de = 5.683167559602728e-18
Info: cfl dt = 0.00042529425143083893 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2451e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3278879465535294 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 613.31s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19097783480607672, dt = 0.00042529425143083893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 353.22 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.630979938271605
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0728106380652126e-19,-1.9727676528128376e-18,-1.730446051877785e-18)
    sum a = (5.1652821974521166e-18,1.9053865944624938e-19,-4.3268000564142305e-18)
    sum e = 0.0683628636610819
    sum de = 9.788736254944322e-18
Info: cfl dt = 0.0004285601301247429 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2517e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3385816827125225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19140312905750756, dt = 0.0004285601301247429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.5%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 404.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
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: 1.630738811728395
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.229004505276208e-20,-1.9715884842917065e-18,-1.7326511751848637e-18)
    sum a = (-2.346657658814633e-18,2.3433634737397274e-19,-3.5321061999894105e-18)
    sum e = 0.0683628641542346
    sum de = 4.2038245172230926e-18
Info: cfl dt = 0.0004151876514074322 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2405e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3467865706841706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1918316891876323, dt = 0.0004151876514074322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.7%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 373.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.630738811728395
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.085258247462141e-19,-1.9723745966391272e-18,-1.733932964835623e-18)
    sum a = (-6.612327859447051e-18,-7.180949124081339e-19,-3.827649543622684e-18)
    sum e = 0.06836286200000918
    sum de = -4.831475931138529e-18
Info: cfl dt = 0.00041778345789972743 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2538e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.307162145738783 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.29s (niter = 2) global walltime = 616.74s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19224687683903974, dt = 0.00041778345789972743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 383.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
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: 1.6218050733024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0014322627713287e-18,-1.9720189743867225e-18,-1.7356091615917004e-18)
    sum a = (-3.4547017294647274e-18,-5.1352601925649084e-18,-8.40556587740991e-19)
    sum e = 0.06836286237645789
    sum de = 1.7071525535436796e-17
Info: cfl dt = 0.0004205581795877453 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0452e+04 | 82944 |      1 | 1.177e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2774975786369303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19266466029693946, dt = 0.0004205581795877453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.0%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 333.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6215639467592593
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-20,-1.974770367602695e-18,-1.735336017542764e-18)
    sum a = (1.821983817793291e-18,1.871845800972545e-18,-7.618816796531414e-18)
    sum e = 0.06836286278316518
    sum de = -1.2090548289107883e-17
Info: cfl dt = 0.0004235219988807317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1115e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2980963286752631 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 619.09s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.1930852184765272, dt = 0.0004235219988807317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 353.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6215639467592595
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.293716320326597e-19,-1.973572482120911e-18,-1.7399927792450356e-18)
    sum a = (1.6554777358253305e-18,-1.322802477181162e-18,-5.431915995244794e-18)
    sum e = 0.06836286322113623
    sum de = -9.986941964601828e-18
Info: cfl dt = 0.0004266799171893895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2307e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3291456024607549 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 620.24s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19350874047540795, dt = 0.0004266799171893895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 365.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.2%)
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: 1.621563946759259
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.145178520585395e-18,-1.9739468213339682e-18,-1.7418246811034505e-18)
    sum a = (-5.370120614837161e-18,1.7994485971672313e-19,-3.687758308517089e-18)
    sum e = 0.06836286369767373
    sum de = 4.4265941823509736e-18
Info: cfl dt = 0.00042953613341184977 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2567e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3438801392396833 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 621.38s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19393542039259734, dt = 0.00042953613341184977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 421.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6214433834876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5395172213818386e-19,-1.9742837266257203e-18,-1.7430629392223348e-18)
    sum a = (-3.1312726493830783e-18,2.8245016642824863e-18,-5.38813625185e-18)
    sum e = 0.06836286412935237
    sum de = -2.8866882842426556e-18
Info: cfl dt = 0.00041792469899040675 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9655e+04 | 82944 |      1 | 1.191e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2985805814373772 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 622.57s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19436495652600919, dt = 0.00041792469899040675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 361.40 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
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: 1.6214433834876545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0665868333667484e-19,-1.972486898403044e-18,-1.745663930940918e-18)
    sum a = (-1.9369808240445437e-18,-3.710375411982976e-18,-5.569687331843693e-18)
    sum e = 0.06836286226098243
    sum de = 1.1377346547519762e-17
Info: cfl dt = 0.0004207002237478385 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2452e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.314218267496888 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 623.72s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.1947828812249996, dt = 0.0004207002237478385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 349.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
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: 1.6212022569444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4436863828391274e-19,-1.975350593382934e-18,-1.748047384379953e-18)
    sum a = (-8.449884188503532e-18,2.148183008051565e-18,-4.9723712324887104e-18)
    sum e = 0.06836286267003962
    sum de = -4.0115480381963664e-18
Info: cfl dt = 0.00042366004397218626 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2506e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3239194297010541 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 624.86s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19520358144874744, dt = 0.00042366004397218626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 362.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6210816936728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.89359657037672e-19,-1.9723745966391272e-18,-1.7500168594314456e-18)
    sum a = (-4.626233730649368e-18,-1.1909227724210172e-18,-7.351063103834207e-18)
    sum e = 0.06836286311056254
    sum de = 5.176218340671029e-18
Info: cfl dt = 0.0004268139545510362 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9810e+04 | 82944 |      1 | 1.188e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.283660170943528 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 626.05s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19562724149271962, dt = 0.0004268139545510362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 379.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6210816936728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7311788984672605e-19,-1.9738158026093983e-18,-1.7536804479670452e-18)
    sum a = (5.07064924439119e-18,-5.576830728287493e-18,-9.382027533646496e-19)
    sum e = 0.06836286358952662
    sum de = 1.4048464946686198e-17
Info: cfl dt = 0.00042972493081446477 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2187e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3372505573718438 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 627.20s (max_walltime = 627.25s)  [SPH][rank=0]
---------------- t = 0.19605405544727067, dt = 0.00042972493081446477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.3%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 414.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6210816936728392
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.977839949149766e-18,-1.7527068861896393e-18)
    sum a = (1.1200229254679334e-18,-2.5171317364410023e-18,-5.156950867048208e-18)
    sum e = 0.06836286403359569
    sum de = 3.61788947595993e-18
Info: cfl dt = 0.00041646351852475265 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2459e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3514466639823395 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 628.35s > 627.25s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 20):
   -> walltime = 628.349887897 >= 627.253978787
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000020.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (54.6%)
Info: dump to _to_trash/sod_128/dump/dump_0000020.sham                      [Shamrock Dump][rank=0]
              - took 7.60 ms, bandwidth = 1.92 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 628.349887897 -> 658.349887897

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.19648378037808514)
   -> iter = None (current = 534)
   -> walltime = 658.349887897 (current = 628.361202464)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 658.35s)      [SPH][rank=0]
---------------- t = 0.19648378037808514, dt = 0.00041646351852475265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (0.9%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 411.78 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 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: 1.6210816936728392
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0349730562612776e-18,-1.9784950427726165e-18,-1.755765063616435e-18)
    sum a = (-1.588396148845433e-18,-2.8009557277811718e-18,-2.052247418906155e-18)
    sum e = 0.06836286191989333
    sum de = 3.595443102857691e-18
Info: cfl dt = 0.0004191441861741707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2171e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3045334349941466 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.90s (niter = 6) global walltime = 629.51s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.1969002438966099, dt = 0.0004191441861741707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 388.92 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.12 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6210816936728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-1.97916885335612e-18,-1.755987347010004e-18)
    sum a = (-3.4439207601286725e-18,2.9383756528945667e-18,-1.1224781739373573e-18)
    sum e = 0.06836286231570757
    sum de = 3.494116786542396e-18
Info: cfl dt = 0.00042200619807790255 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2166e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.312853149936166 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19731938808278407, dt = 0.00042200619807790255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 377.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 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: 1.6208405671296293
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.145178520585395e-18,-1.9770538368023454e-18,-1.75627015552395e-18)
    sum a = (-8.289367533944492e-19,3.0392226368922475e-18,5.591721502858958e-20)
    sum e = 0.06836286274231276
    sum de = -3.792484142212723e-18
Info: cfl dt = 0.00042505979287393224 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2439e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3268137312298292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19774139428086196, dt = 0.00042505979287393224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.9%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 345.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.599880250050123e-19,-1.975500329068157e-18,-1.755993142454808e-18)
    sum a = (3.040233352767503e-18,2.56115402789656e-18,-2.4107688651162776e-18)
    sum e = 0.0683628632021897
    sum de = 1.7791874117517375e-17
Info: cfl dt = 0.0004283110591940975 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2830e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.343617653402077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1981664540737359, dt = 0.0004283110591940975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 354.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.629545235339506
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-19,-1.973740934766787e-18,-1.7575759089002403e-18)
    sum a = (3.4618890423554308e-18,-1.1625478600712614e-18,-4.832018427675386e-18)
    sum e = 0.06836286370101666
    sum de = -3.8361063389963194e-18
Info: cfl dt = 0.00041643385896760366 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2368e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.345305910378206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19859476513293, dt = 0.00041643385896760366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 370.21 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.976979799522502e-19,-1.9752382916190167e-18,-1.7600687011916538e-18)
    sum a = (-3.0462227801764222e-18,-7.435125449747358e-19,-8.912024580311306e-19)
    sum e = 0.06836286181844176
    sum de = -1.2023315048919573e-17
Info: cfl dt = 0.00041910344120571973 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1801e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2977504040578933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19901119899189762, dt = 0.00041910344120571973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.3%)
   patch tree reduce : 1.56 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 513.57 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.629545235339506
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-1.975612630832074e-18,-1.7596236562293204e-18)
    sum a = (3.585271246979171e-18,3.196707143825523e-18,3.69633305798522e-19)
    sum e = 0.0683628622135072
    sum de = 1.5555760076325226e-17
Info: cfl dt = 0.00042195436775997145 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2163e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.312663717211765 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.59s (niter = 4) global walltime = 636.40s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.19943030243310333, dt = 0.00042195436775997145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 361.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.037342828190786e-19,-1.9744147453502903e-18,-1.759199149501051e-18)
    sum a = (-6.8159683913503115e-19,-1.814833938823893e-18,1.6321143234233406e-18)
    sum e = 0.06836286263874243
    sum de = 7.082042471993205e-18
Info: cfl dt = 0.00042499637189253534 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2387e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3256935060752544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1998522568008633, dt = 0.00042499637189253534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.1%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 348.67 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.2%)
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: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.666467083416871e-20,-1.9763051583762304e-18,-1.758257775434867e-18)
    sum a = (3.809275832072758e-19,2.7944796593952774e-18,2.2318405145263507e-21)
    sum e = 0.0683628630963616
    sum de = -6.862449180417528e-18
Info: cfl dt = 0.0004282353768710683 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2534e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3379596667016138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20027725317275583, dt = 0.0004282353768710683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 366.37 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.504049411507412e-19,-1.9734976142782996e-18,-1.7586060974006323e-18)
    sum a = (4.5447775178880636e-18,2.3363820474162054e-18,-2.8779458746918305e-18)
    sum e = 0.06836286359246195
    sum de = 3.2754764070323794e-18
Info: cfl dt = 0.0004302801324605514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2229e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3424863305858101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2007054885496269, dt = 0.0004302801324605514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 418.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
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: 1.629545235339506
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.504049411507412e-19,-1.972561766245656e-18,-1.7604482568634976e-18)
    sum a = (1.220046363196888e-18,-1.973740934766787e-18,-4.310443167345805e-18)
    sum e = 0.06836286389913704
    sum de = -8.91078660511524e-18
Info: cfl dt = 0.00041765529414398745 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1928e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3432861320125726 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.45s (niter = 3) global walltime = 641.00s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.20113576868208743, dt = 0.00041765529414398745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 362.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0589307658969553e-18,-1.9740965570191913e-18,-1.762547156681546e-18)
    sum a = (1.8956537749229996e-18,-3.0644905337736265e-18,-5.336759019255072e-18)
    sum e = 0.0683628618979075
    sum de = -5.596346682509162e-18
Info: cfl dt = 0.00042041860259747283 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9958e+04 | 82944 |      1 | 1.186e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2681521951922183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2015534239762314, dt = 0.00042041860259747283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 412.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (76.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6295452353395061
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.756074117261118e-19,-1.975930819163173e-18,-1.7650201340832174e-18)
    sum a = (-2.579646385021599e-18,3.3071184947168222e-18,-1.890522362307284e-18)
    sum e = 0.06836286230479248
    sum de = 6.3667231480369485e-18
Info: cfl dt = 0.00042336569376711123 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.6023e+04 | 82944 |      1 | 1.256e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.204749646937266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2019738425788289, dt = 0.00042336569376711123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.6%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 391.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.62084056712963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.98942740891943e-19,-1.9731981429078536e-18,-1.765086037081706e-18)
    sum a = (3.46787846976435e-19,-4.149175837528935e-19,-3.562971364653546e-18)
    sum e = 0.06836286274155334
    sum de = 1.393962121296402e-17
Info: cfl dt = 0.00042650669966687755 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2396e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3302934926233723 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.32s (niter = 2) global walltime = 644.59s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.202397208272596, dt = 0.00042650669966687755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 405.34 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.70 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6205994405864195
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.9752570085796697e-18,-1.766961886091692e-18)
    sum a = (5.7052290783662034e-18,-3.8899272155259886e-18,-7.831682001556876e-19)
    sum e = 0.06836286321408562
    sum de = -5.1287844956247886e-18
Info: cfl dt = 0.00042955790990891943 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2506e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3422040890668754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20282371497226287, dt = 0.00042955790990891943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 334.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 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: 1.6204788773148149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.295591338642955e-19,-1.9758185173992557e-18,-1.7667102916032785e-18)
    sum a = (-1.7740683985219354e-18,3.0532182442204337e-18,1.5764416053422611e-18)
    sum e = 0.06836286367503532
    sum de = -1.8202738036494914e-17
Info: cfl dt = 0.0004177506947354694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2350e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.348887332996641 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 646.88s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.2032532728821718, dt = 0.0004177506947354694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.7%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 357.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6204788773148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084353e-19,-1.974302443586373e-18,-1.7655430070329436e-18)
    sum a = (1.0292831002228041e-18,-3.6944940708690124e-18,5.695889307719175e-19)
    sum e = 0.06836286180672994
    sum de = -5.903819642362473e-19
Info: cfl dt = 0.0004205089978120967 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2337e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3115826823048753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20367102357690725, dt = 0.0004205089978120967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.5%)
   patch tree reduce : 1.52 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 422.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6204788773148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.887372765678255e-19,-1.976529761904065e-18,-1.7655063457777106e-18)
    sum a = (4.630725801206057e-18,1.2964770720228957e-18,2.5117568702617983e-18)
    sum e = 0.06836286220774856
    sum de = 1.0504902611847833e-17
Info: cfl dt = 0.00042345118148506367 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2288e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3193501031294317 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 649.18s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.20409153257471935, dt = 0.00042345118148506367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 365.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6204788773148149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3560063653793591e-18,-1.976061837887743e-18,-1.7640392268323794e-18)
    sum a = (-5.56013519938513e-18,-1.3447200381056764e-19,1.237863466244863e-18)
    sum e = 0.06836286263808478
    sum de = 7.190462689241756e-18
Info: cfl dt = 0.0004265870954003595 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0730e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.299952167267943 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 650.35s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.20451498375620442, dt = 0.0004265870954003595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.21 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.58 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6204788773148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.293716320326597e-19,-1.976230290533619e-18,-1.763785419286583e-18)
    sum a = (-3.865276978346154e-18,-2.9876948442148876e-18,-3.579810329221337e-18)
    sum e = 0.06836286310373388
    sum de = -3.3881317890172014e-18
Info: cfl dt = 0.00042970643918312744 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9190e+04 | 82944 |      1 | 1.199e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2810649897442998 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 651.55s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.20494157085160478, dt = 0.00042970643918312744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.50 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.64 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6204788773148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.77474553135651e-19,-1.975313159461628e-18,-1.76635844933268e-18)
    sum a = (1.199382838636116e-18,-4.315738070378854e-18,-2.9276218719070436e-18)
    sum e = 0.06836286356940469
    sum de = 1.7533582008164017e-18
Info: cfl dt = 0.00041632389635308563 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2146e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3455572906955824 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 652.70s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.2053712772907879, dt = 0.00041632389635308563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 383.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6204788773148149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.976979799522502e-19,-1.978888098946327e-18,-1.7674363212113583e-18)
    sum a = (5.690330377686517e-18,3.0591000491055993e-19,-1.022376716498442e-18)
    sum e = 0.06836286146256444
    sum de = -8.36529738708347e-18
Info: cfl dt = 0.00041898869770797003 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2336e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3070907323418788 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 653.85s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.205787601187141, dt = 0.00041898869770797003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 349.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
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: 1.6203583140432096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1260123528768529e-18,-1.9779148169923775e-18,-1.767466073236499e-18)
    sum a = (1.2928927740578706e-18,-2.776548811089825e-18,-1.3587479661696833e-18)
    sum e = 0.06836286184269605
    sum de = 2.9984966332802232e-18
Info: cfl dt = 0.00042183451941780586 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2472e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3179147855555065 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 654.99s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.206206589884849, dt = 0.00042183451941780586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 362.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
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: 1.6203583140432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.935288184949611e-19,-1.9797490791363593e-18,-1.7681164105682523e-18)
    sum a = (3.5921590884994284e-18,-5.201555667197385e-18,-1.7152650412099078e-18)
    sum e = 0.0683628622514942
    sum de = -6.4594732557612944e-18
Info: cfl dt = 0.00042487163394692746 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0468e+04 | 82944 |      1 | 1.177e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2901845686450673 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 656.17s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.2066284244042668, dt = 0.00042487163394692746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1.85 us    (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        : 414.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
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: 1.6203583140432096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.666467083416871e-20,-1.9828935285260417e-18,-1.7689055766483274e-18)
    sum a = (1.4159006394685533e-18,-8.929487588272755e-19,1.1231986457784164e-18)
    sum e = 0.06836286269116783
    sum de = 3.87432870074117e-18
Info: cfl dt = 0.0004281058249218415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1324e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.315253988958793 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 657.34s (max_walltime = 658.35s)  [SPH][rank=0]
---------------- t = 0.2070532960382137, dt = 0.0004281058249218415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1.59 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 437.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.62035831404321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.6789146928138e-19,-1.9817705108868693e-18,-1.767823387294527e-18)
    sum a = (-2.858454230906798e-18,-4.9625775135814995e-18,-3.1815990584122425e-19)
    sum e = 0.06836286316857518
    sum de = -1.0664144805931641e-18
Info: cfl dt = 0.00041625720938763934 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9211e+04 | 82944 |      1 | 1.198e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2860148246468717 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 658.53s > 658.35s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 21):
   -> walltime = 658.5346425930001 >= 658.349887897
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000021.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (58.4%)
Info: dump to _to_trash/sod_128/dump/dump_0000021.sham                      [Shamrock Dump][rank=0]
              - took 7.32 ms, bandwidth = 2.00 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 658.5346425930001 -> 688.5346425930001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.20748140186313555)
   -> iter = None (current = 560)
   -> walltime = 688.5346425930001 (current = 658.546237743)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 688.53s)      [SPH][rank=0]
---------------- t = 0.20748140186313555, dt = 0.00041625720938763934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (1.1%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 395.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
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: 1.6203583140432103
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.295591338642955e-19,-1.985401601253527e-18,-1.7682580435025213e-18)
    sum a = (-1.6986016131695504e-18,-3.5235052768246896e-18,-1.167241821679749e-19)
    sum e = 0.06836286131008602
    sum de = -2.7028821346884724e-18
Info: cfl dt = 0.0004189109305026198 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1964e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3001497114861165 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.92s (niter = 6) global walltime = 659.70s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.2078976590725232, dt = 0.0004189109305026198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.628809799382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.9854390351748325e-18,-1.768270744196096e-18)
    sum a = (-5.4306138316672474e-18,-5.449330792320121e-18,1.8735798039069352e-18)
    sum e = 0.06836286168525932
    sum de = -7.806255641895632e-18
Info: cfl dt = 0.00042174577323501764 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2176e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3122925652396145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2083165700030258, dt = 0.00042174577323501764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (1.7%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 419.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 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: 1.628809799382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6061040547485865e-19,-1.989781370046299e-18,-1.7670697937114678e-18)
    sum a = (-4.105453017443824e-18,4.695112145851941e-18,-2.522102585383204e-18)
    sum e = 0.06836286208945792
    sum de = -1.2536087619363645e-18
Info: cfl dt = 0.00042477145896090927 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2149e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.320689614197257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2087383157762608, dt = 0.00042477145896090927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 331.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6288097993827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.666467083416871e-20,-1.985214431646998e-18,-1.769092704022692e-18)
    sum a = (-2.3478555442964167e-19,1.9933188756096923e-18,-3.6534204581732984e-18)
    sum e = 0.06836286252478564
    sum de = -3.5185748628943636e-18
Info: cfl dt = 0.00042799360301924233 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2464e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3359587709750194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20916308723522173, dt = 0.00042799360301924233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.7%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 398.60 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6288097993827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.984765224591329e-18,-1.7708911523924795e-18)
    sum a = (2.7290825988741384e-18,-1.9395263306933345e-18,4.140405987693326e-18)
    sum e = 0.06836286299857186
    sum de = 4.5028271476038606e-18
Info: cfl dt = 0.00043024047354241006 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2295e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3429577089378428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20959108083824096, dt = 0.00043024047354241006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 332.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6288097993827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4901695393391543e-18,-1.986281298404212e-18,-1.7674330938859174e-18)
    sum a = (-2.4796229472926443e-19,2.8288814330752583e-19,-2.390231877364925e-18)
    sum e = 0.06836286332094535
    sum de = 3.1797616839926435e-18
Info: cfl dt = 0.00041749520447119815 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2384e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3516789997352148 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21002132131178336, dt = 0.00041749520447119815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 325.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6288097993827164
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04356663288925e-19,-1.9857946574272372e-18,-1.769840632873766e-18)
    sum a = (-4.1818182169075465e-18,1.7438966579495035e-18,-2.0469940975059456e-18)
    sum e = 0.0683628613276984
    sum de = -3.105222784634265e-18
Info: cfl dt = 0.0004202434112936411 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0342e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.274625208537981 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.61s (niter = 4) global walltime = 666.62s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21043881651625457, dt = 0.0004202434112936411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 337.77 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6288097993827164
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6051665455904073e-18,-1.984821375473288e-18,-1.7706547155372257e-18)
    sum a = (-9.583083854271088e-19,8.7460613738746e-19,7.029762671498408e-19)
    sum e = 0.06836286171753876
    sum de = 4.980553729855286e-19
Info: cfl dt = 0.00042317516187468453 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2154e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3160760783280459 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21085905992754822, dt = 0.00042317516187468453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.5%)
   patch tree reduce : 1.58 us    (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 453.99 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6286892361111114
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.822660950627866e-19,-1.9854577521354855e-18,-1.769780250334111e-18)
    sum a = (-2.9306268311842774e-18,-3.113903309897212e-18,-9.126131502641376e-19)
    sum e = 0.06836286213750979
    sum de = -1.2171863452044296e-17
Info: cfl dt = 0.0004263006336494357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1706e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3170180612656965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2112822350894229, dt = 0.0004263006336494357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 344.23 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6286892361111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.551964830778767e-19,-1.987591485649913e-18,-1.770535674166025e-18)
    sum a = (-4.999375058225049e-18,-1.9739655382946213e-18,1.84911732578101e-18)
    sum e = 0.0683628625938738
    sum de = 2.5122997215562548e-18
Info: cfl dt = 0.0004295448277059966 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1915e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3306101902391185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21170853572307233, dt = 0.0004295448277059966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 431.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 1.619646990740741
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.247675919371601e-19,-1.9875540517286073e-18,-1.7691282886741957e-18)
    sum a = (-3.2570506249703863e-18,6.476817064320249e-19,-1.555140053671672e-18)
    sum e = 0.06836286307361536
    sum de = 9.569778238079085e-18
Info: cfl dt = 0.0004175700124551827 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0353e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3116214201771974 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.47s (niter = 3) global walltime = 671.26s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21213808055077832, dt = 0.0004175700124551827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 430.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619646990740741
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.060363028668284e-19,-1.9867679393811866e-18,-1.770525996825368e-18)
    sum a = (-2.2771803008711674e-18,-3.072276789405222e-18,-5.239256585350911e-19)
    sum e = 0.06836286121340084
    sum de = 1.8634724839594607e-19
Info: cfl dt = 0.00042031386206912866 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0682e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2810166614664587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2125556505632335, dt = 0.00042031386206912866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 350.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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: 1.6196469907407407
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.156193867210995e-19,-1.988340164076028e-18,-1.7705026091878197e-18)
    sum a = (2.2867633847254385e-18,-3.4077221582260157e-18,1.1874314103751332e-18)
    sum e = 0.06836286160598809
    sum de = -1.3061248046661311e-18
Info: cfl dt = 0.00042324136039142475 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2326e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3194346118855744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21297596442530262, dt = 0.00042324136039142475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 337.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6196469907407407
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-1.988602201525168e-18,-1.7696486214877314e-18)
    sum a = (1.040363540929305e-18,9.118903230079832e-20,3.728648706171171e-18)
    sum e = 0.06836286202928643
    sum de = 1.1565387861810217e-17
Info: cfl dt = 0.0004263624165143156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2095e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3243688154103723 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 674.74s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21339920578569405, dt = 0.0004263624165143156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 321.84 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619646990740741
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.629124255226085e-19,-1.9899685396528277e-18,-1.7674970700903576e-18)
    sum a = (-2.0358063762917144e-18,-4.349671920042514e-18,-4.615513028425968e-19)
    sum e = 0.06836286248871427
    sum de = -7.714776083592167e-18
Info: cfl dt = 0.0004296560975302212 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2055e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.333404894668912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21382556820220835, dt = 0.0004296560975302212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (1.7%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 405.73 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 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: 1.6196469907407405
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-19,-1.991596915229628e-18,-1.768593673040385e-18)
    sum a = (-6.814770505868528e-18,-2.521249467784634e-18,-4.6707712554658936e-18)
    sum e = 0.0683628629803222
    sum de = -1.3044307387716225e-19
Info: cfl dt = 0.00041616980161698333 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2210e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3465829986380071 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 677.04s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.2142552242997386, dt = 0.00041616980161698333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 319.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.222780700577744e-19,-1.9929445363966345e-18,-1.7714521912810268e-18)
    sum a = (-2.35803757089158e-18,-4.188556322742581e-18,-3.251044422493666e-18)
    sum e = 0.06836286090490538
    sum de = 1.3616054627112878e-17
Info: cfl dt = 0.0004188204238149972 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2135e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3029744604485236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21467139410135558, dt = 0.0004188204238149972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 323.04 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-19,-1.994947251186492e-18,-1.7725064607947434e-18)
    sum a = (-1.407515441096066e-18,-3.2482162195422302e-18,-1.3487577600314866e-18)
    sum e = 0.06836286128620264
    sum de = 6.221456997582836e-18
Info: cfl dt = 0.00042165182980871907 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0108e+04 | 82944 |      1 | 1.183e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2744251273007328 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 679.37s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21509021452517058, dt = 0.00042165182980871907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 326.34 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.504049411507412e-19,-1.9966504946059038e-18,-1.7726460042822817e-18)
    sum a = (-5.003567657411292e-18,1.2630205048558849e-18,4.61119825920818e-20)
    sum e = 0.06836286169760664
    sum de = 6.35613523619627e-18
Info: cfl dt = 0.00042467432874085235 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2061e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3187702354126611 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 680.53s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.2155118663549793, dt = 0.00042467432874085235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 341.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 1.6195264274691354
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5395172213818386e-19,-1.994236006681683e-18,-1.772371072475033e-18)
    sum a = (-6.774641342228768e-18,-5.222780700577744e-19,-1.8497166474726273e-18)
    sum e = 0.06836286214032636
    sum de = -8.211984423630442e-18
Info: cfl dt = 0.00042789336451908147 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0971e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3081446733056428 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 681.70s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21593654068372015, dt = 0.00042789336451908147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 323.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.135595436731124e-18,-1.9950595529504093e-18,-1.773538394005227e-18)
    sum a = (3.220515117775978e-18,-4.773648512751397e-18,-8.015614401306461e-19)
    sum e = 0.06836286262223995
    sum de = -3.350862339338012e-18
Info: cfl dt = 0.0004160768028804962 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1996e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3370997060183838 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 682.85s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21636443404823924, dt = 0.0004160768028804962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 325.73 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.241452114673136e-19,-1.9979793988122575e-18,-1.773670141602961e-18)
    sum a = (3.311554414391553e-18,1.2478972006483633e-18,-2.272375957125618e-18)
    sum e = 0.0683628608153682
    sum de = 5.460821410948474e-18
Info: cfl dt = 0.0004187153867383613 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9455e+04 | 82944 |      1 | 1.194e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2542867310772563 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 684.04s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21678051085111974, dt = 0.0004187153867383613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 359.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691354
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.366526958391809e-19,-1.9964820419600277e-18,-1.7749205716598744e-18)
    sum a = (-4.369886237547617e-18,-1.6141506867037864e-19,-3.956897359552466e-18)
    sum e = 0.06836286119730724
    sum de = -2.0709955560367643e-17
Info: cfl dt = 0.0004215348174349748 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1897e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.306607337777739 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 685.20s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.2171992262378581, dt = 0.0004215348174349748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 32.33 us   (7.6%)
   gen split merge   : 1.39 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 374.78 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.522720825602804e-19,-1.9966879285272094e-18,-1.7769433551528466e-18)
    sum a = (-2.7186011009085296e-18,5.300268917680638e-18,-3.951564263708567e-18)
    sum e = 0.06836286160872719
    sum de = -5.78692909564138e-18
Info: cfl dt = 0.0004245448000711848 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1555e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3091514178020247 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 686.36s (max_walltime = 688.53s)  [SPH][rank=0]
---------------- t = 0.21762076105529307, dt = 0.000157016722484693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 313.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195264274691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.241452114673136e-19,-1.9948911003045337e-18,-1.7775633107108946e-18)
    sum a = (8.688263399378525e-18,-5.907072782046789e-19,2.9868587130830984e-18)
    sum e = 0.06836283411855161
    sum de = 3.912445183367613e-18
Info: cfl dt = 0.00042576010400872705 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1431e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4867977216318507 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 687.52s (max_walltime = 688.53s)  [SPH][rank=0]
Info: iteration since start : 586                                                     [SPH][rank=0]
Info: time since start : 687.5218747580001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 8):
   -> t = 0.21777777777777776 >= 0.21777777777777776
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000008.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.21777777777777776 -> 0.245

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.21777777777777776)
   -> iter = None (current = 585)
   -> walltime = 688.5346425930001 (current = 688.5859469400001)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 688.53s)      [SPH][rank=0]
---------------- t = 0.21777777777777776, dt = 0.00042576010400872705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.81 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.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: 1.6192853009259256
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8811489609797907e-19,-1.995284156478244e-18,-1.7757382400384377e-18)
    sum a = (1.3700815197903197e-18,2.3102718873054474e-18,5.378870829268927e-18)
    sum e = 0.06836286222411653
    sum de = -4.9000855998661275e-18
Info: cfl dt = 0.0004289889657619637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9910e+04 | 82944 |      1 | 1.186e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2918739172875477 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 689.77s > 688.53s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 22):
   -> walltime = 689.773614735 >= 688.5346425930001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000022.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (52.8%)
Info: dump to _to_trash/sod_128/dump/dump_0000022.sham                      [Shamrock Dump][rank=0]
              - took 7.47 ms, bandwidth = 1.95 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 689.773614735 -> 719.773614735

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.21820353788178648)
   -> iter = None (current = 586)
   -> walltime = 719.773614735 (current = 689.785029333)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 719.77s)      [SPH][rank=0]
---------------- t = 0.21820353788178648, dt = 0.0004289889657619637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.2%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 381.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6279899691358024
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.9933937434523036e-18,-1.7729204840873105e-18)
    sum a = (4.067719624767631e-18,-1.7118532213117848e-18,4.211206059903608e-18)
    sum e = 0.0683628627187847
    sum de = 3.406766513856796e-18
Info: cfl dt = 0.00041564748454829466 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1272e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.327026351559714 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.99s (niter = 6) global walltime = 690.95s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.21863252684754844, dt = 0.00041564748454829466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 395.25 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.51 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6279899691358022
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8064113065301e-18,-1.9951718547143267e-18,-1.771452947393699e-18)
    sum a = (1.0661180787876586e-19,-1.6036691887381776e-19,6.154233913484371e-19)
    sum e = 0.06836286068369721
    sum de = 7.428478947420214e-18
Info: cfl dt = 0.0004182609212989479 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0837e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2779109602219103 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21904817433209672, dt = 0.0004182609212989479 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.8%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 365.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.39 us   (95.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.627989969135803
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-19,-1.9948536663832276e-18,-1.771908757468788e-18)
    sum a = (3.4493112447967e-18,-3.1782147867004843e-18,-3.797587913089019e-18)
    sum e = 0.06836286106054205
    sum de = 7.995991022080595e-18
Info: cfl dt = 0.00042105424874053443 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9680e+04 | 82944 |      1 | 1.190e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2649415367858372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21946643525339568, dt = 0.00042105424874053443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 399.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6279899691358029
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2458009010552415e-18,-1.997436606953324e-18,-1.7744783030466915e-18)
    sum a = (7.799132900524436e-18,4.216332292351444e-18,-1.96801631977964e-18)
    sum e = 0.06836286146595502
    sum de = -6.108801615598014e-18
Info: cfl dt = 0.00042403762411363 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1448e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3057059877330994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2198874895021362, dt = 0.00042403762411363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.4%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 374.25 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6279899691358022
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.899820375075184e-19,-1.9940114031538486e-18,-1.774889630037922e-18)
    sum a = (2.7171037440562995e-18,-2.9026262580475787e-19,9.994325985950742e-19)
    sum e = 0.06836286190049112
    sum de = 2.4123498337802474e-18
Info: cfl dt = 0.0004272161017444652 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9569e+04 | 82944 |      1 | 1.192e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2803847500038619 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22031152712624985, dt = 0.0004272161017444652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (1.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.05 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.3%)
   LB compute        : 424.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
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: 1.627748842592593
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.378974567788739e-19,-1.9948536663832276e-18,-1.7738508571159853e-18)
    sum a = (3.929887926519873e-18,-9.57110499945325e-19,-2.0086160994447615e-18)
    sum e = 0.06836286237206192
    sum de = 3.536362554786704e-18
Info: cfl dt = 0.0004156244189920537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1263e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3213881180001568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2207387432279943, dt = 0.0004156244189920537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 387.00 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6277488425925928
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.102054643241175e-19,-1.995096986871715e-18,-1.7753574935250826e-18)
    sum a = (1.0992021784376774e-17,1.776613905170726e-19,3.1394249910527197e-18)
    sum e = 0.06836286061046742
    sum de = 1.3761744294040618e-17
Info: cfl dt = 0.00041822778528243816 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1279e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2858136210214843 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.69s (niter = 4) global walltime = 698.00s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22115436764698637, dt = 0.00041822778528243816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 353.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.627748842592593
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7201635518416603e-18,-1.995284156478244e-18,-1.7729649830238222e-18)
    sum a = (1.0697603993307078e-17,2.2100987138912697e-19,-3.9769756445410024e-18)
    sum e = 0.06836286098217732
    sum de = -1.3598266935220538e-17
Info: cfl dt = 0.000421011258488239 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1460e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2971665494306626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22157259543226882, dt = 0.000421011258488239 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 367.32 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619044174382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-19,-1.994254723642336e-18,-1.7761360077156647e-18)
    sum a = (1.1581007102201388e-17,-2.113069989866775e-18,1.4778968742315209e-18)
    sum e = 0.06836286138171559
    sum de = -4.70950318673391e-18
Info: cfl dt = 0.00042398444807241313 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0284e+04 | 82944 |      1 | 1.180e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2843081200710569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22199360669075704, dt = 0.00042398444807241313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (1.9%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 374.60 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
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: 1.6190441743827158
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1686414766079237e-19,-1.995864382258483e-18,-1.774357736760823e-18)
    sum a = (-3.997194117027605e-19,-2.0510045483418475e-18,3.494758978416347e-18)
    sum e = 0.06836286180966909
    sum de = -1.835943913173696e-18
Info: cfl dt = 0.000427152399505656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1821e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3216626423668891 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22241759113882945, dt = 0.000427152399505656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.6%)
   patch tree reduce : 1.91 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        : 378.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619044174382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4230879523592567e-18,-1.9969312490156968e-18,-1.77243772422493e-18)
    sum a = (4.833767390368426e-18,-2.733874140801274e-18,3.4626674220761204e-18)
    sum e = 0.06836286227381226
    sum de = -7.449231254627944e-18
Info: cfl dt = 0.00042998257195827504 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.8691e+04 | 82944 |      1 | 1.207e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2734981745256955 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.52s (niter = 3) global walltime = 702.71s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.2228447435383351, dt = 0.00042998257195827504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 37.30 us   (2.9%)
   patch tree reduce : 1.76 us    (0.1%)
   gen split merge   : 1.26 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.1%)
   LB compute        : 1.23 ms    (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6190441743827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2999401250250614e-19,-1.998484756749885e-18,-1.7709258053166355e-18)
    sum a = (2.5904273543576537e-19,4.78330646444828e-18,-1.418477692300193e-18)
    sum e = 0.06836286268759174
    sum de = -5.860620962052504e-18
Info: cfl dt = 0.0004168497613674234 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.6852e+04 | 82944 |      1 | 1.241e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.247624765526333 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2232747261102934, dt = 0.0004168497613674234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.70 us    (1.8%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 455.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 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: 1.6190441743827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.845681151105364e-19,-1.994816232461922e-18,-1.7725436598928714e-18)
    sum a = (5.214545237890479e-18,7.074262448359962e-19,3.944726576897957e-18)
    sum e = 0.06836286068551155
    sum de = -1.0159313169368078e-17
Info: cfl dt = 0.0004195463932376794 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1932e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3014168864000775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2236915758716608, dt = 0.0004195463932376794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.7%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 364.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6190441743827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-1.9958830992191357e-18,-1.76982393915677e-18)
    sum a = (9.271034686266386e-18,1.2070942264250997e-18,1.7334886212942389e-18)
    sum e = 0.06836286106453651
    sum de = 3.3970256349633715e-18
Info: cfl dt = 0.00042242525313763605 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1064e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.29404351251019 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 2.35s (niter = 2) global walltime = 706.27s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.2241111222648985, dt = 0.00042242525313763605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 389.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
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: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7824535968944225e-18,-1.9948911003045337e-18,-1.7695364785970473e-18)
    sum a = (1.6588617623113702e-17,-2.6777981266852658e-18,3.4085285851049237e-18)
    sum e = 0.06836286147159557
    sum de = 9.25256439933235e-18
Info: cfl dt = 0.0004254965930120668 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1070e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.30303255146625 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.22453354751803611, dt = 0.0004254965930120668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 370.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0062238046984643e-19,-1.997006116858308e-18,-1.7676998357554743e-18)
    sum a = (-8.433113791758558e-19,1.7898655133129602e-18,-1.0047703670154845e-18)
    sum e = 0.06836286190988311
    sum de = 1.0525231402581936e-17
Info: cfl dt = 0.00042876693642282163 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2160e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3326306080831718 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.35s (niter = 2) global walltime = 708.59s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22495904411104817, dt = 0.00042876693642282163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 356.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6189236111111107
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-19,-1.9954526091241197e-18,-1.7691130542868995e-18)
    sum a = (6.475768914523688e-18,-3.539976202199218e-18,-1.624752147627809e-19)
    sum e = 0.06836286238390481
    sum de = 1.308665903507894e-18
Info: cfl dt = 0.0004167647776323706 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1952e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3390032891424164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.225387811047471, dt = 0.0004167647776323706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 361.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6189236111111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.998335021064662e-18,-1.768979925980434e-18)
    sum a = (5.185346779271997e-18,3.4888414656955685e-20,-1.791879253364054e-18)
    sum e = 0.06836286055868461
    sum de = -1.885580043882798e-17
Info: cfl dt = 0.0004194516308313026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1311e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2899313498654335 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 710.91s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22580457582510335, dt = 0.0004194516308313026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 319.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.25824851045217e-19,-1.9970622677402668e-18,-1.770062132065168e-18)
    sum a = (2.4844144892197796e-18,4.449395886401022e-19,-2.0375525930821563e-18)
    sum e = 0.06836286093169502
    sum de = -1.0952136007998103e-18
Info: cfl dt = 0.0004223206777736347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1477e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3012732078295923 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 712.07s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22622402745593465, dt = 0.0004223206777736347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 380.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.899820375075184e-19,-1.9965381928419864e-18,-1.770989781225034e-18)
    sum a = (1.0099971439660836e-17,2.0403733146910153e-18,-7.526625932158993e-20)
    sum e = 0.0683628613329096
    sum de = -1.837002704357764e-18
Info: cfl dt = 0.0004253817581647408 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1560e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3116828795221918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 713.23s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.2266463481337083, dt = 0.0004253817581647408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 399.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
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: 1.6189236111111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3416317395979523e-19,-1.995695929612607e-18,-1.770598405525289e-18)
    sum a = (9.85500385863603e-18,-2.4195040696756153e-18,4.614024299398509e-19)
    sum e = 0.06836286176558966
    sum de = -7.47443048480876e-18
Info: cfl dt = 0.00042864123639023107 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1707e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3239040277990226 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 714.38s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22707172989187302, dt = 0.00042864123639023107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 369.55 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.997773512245076e-18,-1.7702979775111818e-18)
    sum a = (2.856956874054568e-19,2.8875029538400575e-18,-4.011589627465126e-18)
    sum e = 0.0683628622346069
    sum de = 1.6339265552535454e-18
Info: cfl dt = 0.00041540982199401695 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1485e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3299302018469217 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 715.55s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22750037112826324, dt = 0.00041540982199401695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 431.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.139397471431961e-19,-1.993506045216221e-18,-1.7728946970247834e-18)
    sum a = (1.9525533353077343e-19,-2.533977001028588e-18,-4.9329019927986387e-20)
    sum e = 0.0683628602364461
    sum de = -8.867376166568457e-18
Info: cfl dt = 0.00041800324800573435 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1711e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2929421570109214 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 716.70s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22791578095025725, dt = 0.00041800324800573435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 346.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3368401976708168e-18,-1.9978296631270345e-18,-1.772137747248117e-18)
    sum a = (8.180359955102158e-18,-2.3300369977548814e-18,3.1702956820016007e-19)
    sum e = 0.06836286059329191
    sum de = -8.689499247645054e-18
Info: cfl dt = 0.00042077610072351025 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1755e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3018179876879215 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 717.86s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22833378419826297, dt = 0.00042077610072351025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 318.49 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.627616222993827
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3368401976708168e-18,-1.998690643317067e-18,-1.771921928054914e-18)
    sum a = (-2.323897834660739e-18,-3.3677801641927843e-18,-1.308009008148524e-19)
    sum e = 0.06836286097842871
    sum de = 4.892462303340839e-18
Info: cfl dt = 0.0004237385540600189 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1178e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.299910047037277 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 719.03s (max_walltime = 719.77s)  [SPH][rank=0]
---------------- t = 0.22875456029898647, dt = 0.0004237385540600189 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 364.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.627616222993827
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5332934166833742e-19,-1.9990649825301242e-18,-1.7720674812340734e-18)
    sum a = (-4.2788469409320415e-18,-1.0788456120316124e-19,-1.977245592198303e-18)
    sum e = 0.06836286139279234
    sum de = 5.9690411793010545e-18
Info: cfl dt = 0.0004268956385471883 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1630e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.317378249346874 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 720.19s > 719.77s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 23):
   -> walltime = 720.1863719910001 >= 719.773614735
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000023.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (55.2%)
Info: dump to _to_trash/sod_128/dump/dump_0000023.sham                      [Shamrock Dump][rank=0]
              - took 7.43 ms, bandwidth = 1.97 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 720.1863719910001 -> 750.1863719910001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.2291782988530465)
   -> iter = None (current = 612)
   -> walltime = 750.1863719910001 (current = 720.1976924190001)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 750.19s)      [SPH][rank=0]
---------------- t = 0.2291782988530465, dt = 0.0004268956385471883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 318.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
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: 1.6274956597222219
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5285018747562386e-18,-1.9994393217431815e-18,-1.7732792890861074e-18)
    sum a = (-1.5063409933432368e-18,2.0031639969131034e-18,-4.730444134281057e-18)
    sum e = 0.06836286184365463
    sum de = -1.263116706769294e-17
Info: cfl dt = 0.0004298470178357911 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1386e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.322666387014715 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.98s (niter = 6) global walltime = 721.36s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.2296051944915937, dt = 0.0004298470178357911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 350.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6274956597222225
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0158068885527354e-18,-1.9970809847009198e-18,-1.7758908358162842e-18)
    sum a = (2.2316606525633797e-18,2.737018590190957e-18,-2.3087627633325425e-18)
    sum e = 0.0683628622671233
    sum de = 1.6153765337086762e-17
Info: cfl dt = 0.00041803650680020157 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1564e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.335132363502957 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2300350415094295, dt = 0.00041803650680020157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (2.1%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 326.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
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: 1.6274956597222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5428765005376453e-18,-1.9967815133304738e-18,-1.7763711194744786e-18)
    sum a = (2.269992987980464e-18,-9.5785917837144e-19,-3.2700311491161026e-18)
    sum e = 0.0683628604843717
    sum de = 3.1937377276223394e-18
Info: cfl dt = 0.00042081006973184717 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1859e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3037995575552774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2304530780162297, dt = 0.00042081006973184717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (1.7%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 404.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6274956597222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3416317395979524e-18,-1.998260153222051e-18,-1.7779265482775472e-18)
    sum a = (4.24770191840566e-18,1.167039930627951e-18,-9.402793527148333e-19)
    sum e = 0.06836286087160744
    sum de = -5.063351200449394e-18
Info: cfl dt = 0.0004237683054037586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1704e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.309622253947248 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23087388808596154, dt = 0.0004237683054037586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 376.59 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 1.6273750964506173
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-19,-1.996706645487862e-18,-1.7778428765353413e-18)
    sum a = (-6.444623891997307e-18,4.859821399597226e-18,-1.225556073732734e-18)
    sum e = 0.06836286128908187
    sum de = -3.759132219914585e-18
Info: cfl dt = 0.0004269211141314043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9240e+04 | 82944 |      1 | 1.198e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2735097478828177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2312976563913653, dt = 0.0004269211141314043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.9%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 365.41 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6273750964506173
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-20,-1.992794800711412e-18,-1.7784335769409027e-18)
    sum a = (6.887841520257345e-19,-2.2331580094156095e-18,-6.514328752117634e-19)
    sum e = 0.06836286174328685
    sum de = -5.091091529471972e-18
Info: cfl dt = 0.00042991484133490137 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1500e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.32487264191887 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.2317245775054967, dt = 0.00042991484133490137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 371.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6184413580246915
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.887372765678255e-19,-1.9964820419600277e-18,-1.778554833146823e-18)
    sum a = (-1.345225396043304e-18,-1.7508593673123726e-18,7.449916887303685e-20)
    sum e = 0.06836286217795473
    sum de = -1.4251329337553603e-18
Info: cfl dt = 0.00041668737189683825 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0324e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.312212082594122 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.67s (niter = 4) global walltime = 728.37s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23215449234683158, dt = 0.00041668737189683825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 378.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618441358024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.293716320326597e-19,-1.9962574384321934e-18,-1.7783757135930227e-18)
    sum a = (-1.2332231034965107e-18,-2.1931785814610724e-18,3.5364982631886675e-19)
    sum e = 0.06836286020023362
    sum de = -6.421356773134851e-18
Info: cfl dt = 0.00041936936462717573 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2038e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.302840847679014 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23257117971872843, dt = 0.00041936936462717573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 343.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6184413580246908
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.037342828190786e-19,-1.9988029450809842e-18,-1.7781897568134058e-18)
    sum a = (-8.630764896252899e-19,-1.8381552717973734e-18,-1.0311943011162987e-18)
    sum e = 0.06836286057777309
    sum de = 7.095594999149274e-18
Info: cfl dt = 0.0004222332081313883 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1944e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3095057686192013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2329905490833556, dt = 0.0004222332081313883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.81 us    (1.9%)
   patch tree reduce : 1.81 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 381.34 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 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: 1.6184413580246912
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-1.9990836994907772e-18,-1.7789048304444304e-18)
    sum a = (2.0825239100812858e-18,-1.115530854911244e-19,-2.9604021301324477e-18)
    sum e = 0.06836286098502793
    sum de = 1.2267578175084032e-17
Info: cfl dt = 0.00042528916312319456 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9287e+04 | 82944 |      1 | 1.197e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2697524754571277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.233412782291487, dt = 0.00042528916312319456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 381.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618200231481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.126949862035032e-19,-1.998035549694216e-18,-1.780542442129178e-18)
    sum a = (6.029556572559191e-18,1.1797674638719048e-18,-2.056144630683913e-18)
    sum e = 0.06836286142442803
    sum de = 9.90054460398189e-18
Info: cfl dt = 0.00042854335497977445 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9070e+04 | 82944 |      1 | 1.201e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2749374352599359 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.51s (niter = 3) global walltime = 733.08s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.2338380714546102, dt = 0.00042854335497977445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 364.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618200231481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0459884028868772e-18,-1.997586342638547e-18,-1.781251172153167e-18)
    sum a = (1.8567224967650234e-19,-1.1051990926308578e-18,-3.3192964277465764e-18)
    sum e = 0.06836286190162401
    sum de = -6.196893042112461e-18
Info: cfl dt = 0.00041657426787583475 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1904e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3374164388077403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23426661480958996, dt = 0.00041657426787583475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 365.82 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6182002314814812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9290643802511465e-19,-1.9984286058679265e-18,-1.782912808386805e-18)
    sum a = (-1.609359144776651e-18,-2.0468868169982154e-19,-1.2054865107080625e-19)
    sum e = 0.06836286012402856
    sum de = -2.1113990276207945e-17
Info: cfl dt = 0.000419245050004777 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0566e+04 | 82944 |      1 | 1.175e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.275864775285849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2346831890774658, dt = 0.000419245050004777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (1.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 342.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6182002314814812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0924715593869042e-18,-1.997923247930299e-18,-1.7822938456476716e-18)
    sum a = (4.2644723151506344e-19,-1.0692625281773413e-18,-6.614140673758051e-19)
    sum e = 0.06836286050354619
    sum de = -6.564505341220828e-19
Info: cfl dt = 0.000422097607144105 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1465e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3004104958522276 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 736.57s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.2351024341274706, dt = 0.000422097607144105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 366.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6182002314814812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7441212614773382e-18,-1.9988778129235955e-18,-1.782686461951117e-18)
    sum a = (-9.604645792943199e-18,-6.946238437494309e-19,-1.2268566762135818e-18)
    sum e = 0.06836286091228842
    sum de = 4.629882089692006e-18
Info: cfl dt = 0.00042514173544108507 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9765e+04 | 82944 |      1 | 1.189e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.278104991073517 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23552453173461468, dt = 0.00042514173544108507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.7%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 396.74 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 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: 1.6182002314814812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.922840575552682e-19,-1.9985783415531495e-18,-1.7833364456517633e-18)
    sum a = (-8.031822155360956e-19,-2.705274624923684e-18,2.1209657126374274e-18)
    sum e = 0.06836286135228661
    sum de = 2.4347962068824863e-18
Info: cfl dt = 0.00042838339069994213 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9033e+04 | 82944 |      1 | 1.202e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2738278484932322 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.35s (niter = 2) global walltime = 738.97s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23594967347005577, dt = 0.00042838339069994213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 375.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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: 1.6180796682098761
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.45183720392207e-18,-2.0012735838871633e-18,-1.7816874684424806e-18)
    sum a = (-2.0265227638078893e-18,2.617978720438683e-18,1.3690192014706734e-18)
    sum e = 0.06836286182959117
    sum de = 1.5211017666792725e-17
Info: cfl dt = 0.0004304723244374636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1632e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3318576576656516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23637805686075572, dt = 0.0004304723244374636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 365.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6180796682098761
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947735794346539e-19,-1.9990836994907772e-18,-1.7812668992434518e-18)
    sum a = (-5.25123048077011e-18,1.493763195784506e-18,-1.4628574901548575e-18)
    sum e = 0.06836286213531877
    sum de = 5.6196400885586556e-18
Info: cfl dt = 0.0004179100337661263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0358e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3145482551751342 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 741.30s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23680852918519318, dt = 0.0004179100337661263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 352.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618079668209877
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.912267984472113e-19,-1.997773512245076e-18,-1.7825040614734242e-18)
    sum a = (5.0215359396380506e-18,-2.5468542699577648e-18,1.836896289905721e-18)
    sum e = 0.06836286026886455
    sum de = -7.208250381134096e-19
Info: cfl dt = 0.00042067788006944375 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1258e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2925172748174272 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 742.47s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.2372264392189593, dt = 0.00042067788006944375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 375.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618079668209877
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.629124255226085e-19,-2.0009179616347586e-18,-1.781052747808866e-18)
    sum a = (-3.537355827707816e-18,1.008619575662032e-18,1.9462787346386877e-19)
    sum e = 0.06836286066289012
    sum de = -4.551108025597356e-18
Info: cfl dt = 0.00042363003746304236 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1185e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.299738073413183 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 743.64s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23764711709902875, dt = 0.00042363003746304236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 345.52 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6180796682098766
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.51649702090434e-19,-2.000169283208644e-18,-1.7812933200153763e-18)
    sum a = (2.2014140441483365e-18,-1.0453048185416636e-18,-9.236347722300065e-19)
    sum e = 0.0683628610857716
    sum de = -1.0290603276192495e-17
Info: cfl dt = 0.0004267766447968331 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1363e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3121226865034261 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 744.80s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.2380707471364918, dt = 0.0004267766447968331 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 344.16 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6180796682098766
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1145022526381037e-19,-1.9997575100742806e-18,-1.7818982525813357e-18)
    sum a = (-5.818728727765227e-19,-7.555662676351862e-19,7.139967789919088e-19)
    sum e = 0.06836286154320602
    sum de = 8.758320674609466e-18
Info: cfl dt = 0.00042983831778217323 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.8606e+04 | 82944 |      1 | 1.209e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.270812922316349 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 746.01s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23849752378128863, dt = 0.00042983831778217323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 364.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
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: 1.626784336419753
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-2.0003751697758253e-18,-1.781258246505602e-18)
    sum a = (-3.3720476312216394e-19,2.723392642835665e-18,-1.4553036334783598e-18)
    sum e = 0.06836286199084471
    sum de = -1.1475602369401261e-17
Info: cfl dt = 0.00041791472533399645 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1560e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3350445091472343 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 747.17s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.2389273620990708, dt = 0.00041791472533399645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 403.39 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 5.13 us    (1.2%)
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: 1.6267843364197532
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.551964830778767e-19,-1.998990114687513e-18,-1.782339679699817e-18)
    sum a = (5.175613959732503e-18,9.827153021184556e-19,-2.7027217386371154e-18)
    sum e = 0.06836286022156073
    sum de = -2.2158381900172497e-18
Info: cfl dt = 0.00042067757828701175 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1526e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2973849380709608 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 748.33s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23934527682440482, dt = 0.00042067757828701175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 383.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
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: 1.6266637731481484
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.779094317738616e-19,-1.9985596245924965e-18,-1.783732930738226e-18)
    sum a = (9.051222700359043e-18,4.055591034264569e-18,5.371002103859395e-19)
    sum e = 0.06836286061083251
    sum de = 3.793860570752011e-18
Info: cfl dt = 0.00042362475208384474 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1616e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3076091183297682 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 749.49s (max_walltime = 750.19s)  [SPH][rank=0]
---------------- t = 0.23976595440269183, dt = 0.00042362475208384474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 314.60 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.626663773148148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.522720825602804e-19,-1.9971371355828785e-18,-1.7828369477409713e-18)
    sum a = (5.198373783886397e-18,5.6281152004763655e-18,-3.056196656689814e-18)
    sum e = 0.0683628610280662
    sum de = 8.43221298991656e-18
Info: cfl dt = 0.00042676616254676237 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1927e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3224807789803028 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 750.64s > 750.19s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 24):
   -> walltime = 750.643182954 >= 750.1863719910001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/sod_128/dump/dump_0000024.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (54.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000024.sham                      [Shamrock Dump][rank=0]
              - took 7.38 ms, bandwidth = 1.98 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 750.643182954 -> 780.643182954

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.24018957915477568)
   -> iter = None (current = 638)
   -> walltime = 780.643182954 (current = 750.654382165)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 780.64s)      [SPH][rank=0]
---------------- t = 0.24018957915477568, dt = 0.00042676616254676237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.3%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 354.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6264226466049383
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-1.9930006872785932e-18,-1.7848892569473357e-18)
    sum a = (6.803165990263747e-18,6.320343273262229e-19,1.0285465927153695e-18)
    sum e = 0.06836286147895153
    sum de = 1.0244016464093508e-17
Info: cfl dt = 0.0004298865924594177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9805e+04 | 82944 |      1 | 1.188e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2929792621532734 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.14s (niter = 6) global walltime = 751.84s (max_walltime = 780.64s)  [SPH][rank=0]
---------------- t = 0.24061634531732243, dt = 0.0004298865924594177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 320.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6264226466049383
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.235228309974672e-19,-1.993637063940791e-18,-1.7835826287053183e-18)
    sum a = (-6.081964062387235e-18,2.2309119741372647e-18,3.1646659902560485e-18)
    sum e = 0.06836286192925461
    sum de = -1.3648241879108541e-17
Info: cfl dt = 0.00041658500313532134 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1338e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3310401244256898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24104623190978183, dt = 0.00041658500313532134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 331.02 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
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: 1.6263020833333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0110153466255999e-18,-1.991615632190281e-18,-1.7818297561225353e-18)
    sum a = (-7.269667517575959e-19,4.147379009306259e-18,2.1749173344343017e-18)
    sum e = 0.06836285996022415
    sum de = 3.333921680392926e-18
Info: cfl dt = 0.0004192561849492658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1773e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.297719896060812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24146281691291716, dt = 0.0004192561849492658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 418.85 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.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: 1.6175974151234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.995651213617895e-19,-1.990230577101968e-18,-1.78109478206878e-18)
    sum a = (-2.1685470612418914e-19,-2.994713704459715e-22,-1.5831905476538079e-18)
    sum e = 0.06836286032906935
    sum de = -6.478107980600889e-18
Info: cfl dt = 0.0004221088611268294 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1897e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3083013012067695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2418820730978664, dt = 0.0004221088611268294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (1.9%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 353.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6175974151234565
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.156193867210995e-19,-1.9924017445377016e-18,-1.7825508022798277e-18)
    sum a = (5.439710274544544e-18,-2.178055277253551e-18,2.3577391875218114e-18)
    sum e = 0.06836286072502654
    sum de = -2.3140940118987485e-17
Info: cfl dt = 0.00042515329248648653 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.8555e+04 | 82944 |      1 | 1.210e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2559738484225798 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24230418195899325, dt = 0.00042515329248648653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 343.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.617597415123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.749850312562653e-20,-1.9925701971835772e-18,-1.780723457818751e-18)
    sum a = (-1.3205190079815115e-18,2.440691669134668e-18,2.5670386542828516e-18)
    sum e = 0.0683628611499807
    sum de = 1.547952711107234e-17
Info: cfl dt = 0.0004283952597925443 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1928e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3272708311868326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24272933525147974, dt = 0.0004283952597925443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 344.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.6175974151234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.456133992236056e-19,-1.991559481308322e-18,-1.7795671915676367e-18)
    sum a = (1.8839743914756067e-18,-1.0981615154253776e-18,3.750364127164068e-18)
    sum e = 0.0683628616106792
    sum de = -8.433907055811068e-18
Info: cfl dt = 0.00041645891740473294 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1649e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.332216767010971 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.68s (niter = 4) global walltime = 758.84s (max_walltime = 780.64s)  [SPH][rank=0]
---------------- t = 0.2431577305112723, dt = 0.00041645891740473294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 350.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6174768518518519
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.654019474019942e-19,-1.9921022731672555e-18,-1.777776471794981e-18)
    sum a = (2.9719538803058215e-18,3.684396270596788e-18,-9.77225289312927e-19)
    sum e = 0.06836285984703522
    sum de = 2.614790708174025e-18
Info: cfl dt = 0.00041911904219419445 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1824e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.298254314542923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24357418942867703, dt = 0.00041911904219419445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 387.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6174768518518519
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.42066618236163e-19,-1.9907172180789428e-18,-1.7791447587603587e-18)
    sum a = (3.7189852138832976e-18,1.8342621439815755e-18,-4.34053275267292e-18)
    sum e = 0.06836286020910042
    sum de = -3.2610768469290563e-19
Info: cfl dt = 0.00042196067404232156 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9747e+04 | 82944 |      1 | 1.189e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.268771580412208 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24399330847087122, dt = 0.00042196067404232156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 375.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6174768518518516
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.085258247462141e-19,-1.9900434074954394e-18,-1.781700722823439e-18)
    sum a = (-2.575753257205801e-18,-1.4680086579261523e-18,1.4483860574192964e-18)
    sum e = 0.06836286059854205
    sum de = 8.440683319389103e-18
Info: cfl dt = 0.0004249935789740851 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.8764e+04 | 82944 |      1 | 1.206e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2593665758040504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24441526914491354, dt = 0.0004249935789740851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 360.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6174768518518519
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-1.991278726898529e-18,-1.779859230796978e-18)
    sum a = (1.5273039892744547e-19,-2.2999401250250614e-19,2.1077879763911277e-18)
    sum e = 0.06836286101689756
    sum de = 2.5055234579782204e-18
Info: cfl dt = 0.00042822325562178663 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.9041e+04 | 82944 |      1 | 1.201e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.273525257804513 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.53s (niter = 3) global walltime = 763.60s (max_walltime = 780.64s)  [SPH][rank=0]
---------------- t = 0.24484026272388762, dt = 0.0001597372761123761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 400.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6174768518518519
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2266347333466993e-18,-1.9892385781873657e-18,-1.779387040938021e-18)
    sum a = (8.51846313233566e-18,-9.583083854271088e-19,-1.0428242889220859e-18)
    sum e = 0.0683628342769998
    sum de = -1.5614205349685772e-17
Info: cfl dt = 0.00042953351582974823 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1892e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49843312248879373 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 651                                                     [SPH][rank=0]
Info: time since start : 764.7528709940001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 9):
   -> t = 0.245 >= 0.245
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Saving data to _to_trash/sod_128/l2_error_0000009.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
183 glob_str = f"{dump_folder}sod_*.png"
184 ani = show_image_sequence(glob_str)
185
186 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
187 ani.save("_to_trash/sod.gif", writer=writer)
188
189 if shamrock.sys.world_rank() == 0:
190     plt.show()
195 t, l2_rho, l2_v, l2_P = [], [], [], []
196 for i in l2_error_analysis.get_list_analysis_id():
197     data = l2_error_analysis.load_analysis(i).item()
198     t.append(data["time"])
199     l2_rho.append(data["l2_rho"])
200     l2_v.append(data["l2_v"])
201     l2_P.append(data["l2_P"])
202
203 l2_v = np.array(l2_v)
204
205 plt.plot(t, l2_rho, label="l2_rho")
206 plt.plot(t, l2_v[:, 0], label="l2_v (vx)")
207 plt.plot(t, l2_v[:, 1], label="l2_v (vy)")
208 plt.plot(t, l2_v[:, 2], label="l2_v (vz)")
209 plt.plot(t, l2_P, label="l2_P")
210 plt.legend()
211 plt.xlabel("t")
212 plt.ylabel("L2 error")
213 plt.yscale("log")
214 plt.tight_layout()
215 plt.savefig(f"{dump_folder}/l2_error.png")
216 plt.show()
run sod
220 print("##### Test result #####")
221 result = {
222     "t": float(t[-1]),
223     "l2_rho": l2_rho[-1],
224     "l2_v": l2_v[-1].tolist(),
225     "l2_P": l2_P[-1],
226     "resol": resol,
227 }
228 print(result)
229
230 json.dump(result, open(f"{dump_folder}/test_result.json", "w"), indent=4)
##### Test result #####
{'t': 0.245, 'l2_rho': 0.00016154756852306476, 'l2_v': [0.0011626941444466935, 2.9877483502523424e-05, 1.7433882826202895e-07], 'l2_P': 0.00012483484583846003, 'resol': 128}

Total running time of the script: (12 minutes 37.231 seconds)

Estimated memory usage: 506 MB

Gallery generated by Sphinx-Gallery