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"
            },
            "evol_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"
        },
        "neigh_cache_strategy": "two_stage",
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": false,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null
    }
]
------------------------------------
SPH setup: generating particles ...
SPH setup: Nstep = 82944 ( 8.3e+04 ) Ntotal = 82944 ( 8.3e+04 rank min = 8.5e+06 max = 8.3e+04) rate = 8.294400e+04 N.s^-1
SPH setup: the generation step took : 0.016802948 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     : 22.83 us   (81.9%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.74 us    (0.2%)
   patch tree reduce : 1.31 us    (0.1%)
   gen split merge   : 792.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.1%)
   LB compute        : 933.11 us  (98.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.4%)
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.02038123 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.8% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.054120131 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     : 6.24 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 419.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.1%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.8548779899691358
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}}  [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.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.2654e+04 | 82944 |      1 | 3.661e+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.513179654000002)

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.513443384 (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.513527921000001 >= 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     : 9.48 us    (67.1%)
Info: dump to _to_trash/sod_128/dump/dump_0000000.sham                      [Shamrock Dump][rank=0]
              - took 5.32 ms, bandwidth = 2.74 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.0 -> 0.02722222222222222
[Simulation] Advancing callback "checkpoint"
   -> walltime = 15.513527921000001 -> 45.513527921000005

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 45.51s)       [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.03 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 413.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0846e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.018087933423872785 (tsim/hr)                          [sph::Model][rank=0]
Info: next walltime check in 7.03s (niter = 6) global walltime = 17.33s (max_walltime = 45.51s)  [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.80 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 319.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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 = (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.1835e+04 | 82944 |      1 | 1.600e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.44917906115217876 (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.04 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 332.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 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.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.4543e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5014358061071125 (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.67 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 327.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 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.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.3008e+04 | 82944 |      1 | 1.565e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.634002378229665 (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.14 us    (1.4%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 31.63 us   (7.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 377.43 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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 = (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.6288e+04 | 82944 |      1 | 1.087e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5547864139648859 (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.70 us    (2.0%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 321.20 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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 = (-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.2306e+04 | 82944 |      1 | 1.586e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.601009027772303 (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.37 us    (1.6%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 372.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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.5919e+04 | 82944 |      1 | 1.093e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5175348252935695 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.95s (niter = 3) global walltime = 25.38s (max_walltime = 45.51s)  [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.85 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 327.08 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.48 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 = (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.6103e+04 | 82944 |      1 | 1.090e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8068672382314535 (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.55 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 332.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 6.03 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3254e+04 | 82944 |      1 | 1.558e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6720791688199288 (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.98 us    (1.8%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 362.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.6229e+04 | 82944 |      1 | 1.088e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5160764522451594 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.89s (niter = 3) global walltime = 29.12s (max_walltime = 45.51s)  [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.78 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 381.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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.6247e+04 | 82944 |      1 | 1.088e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7482049779759198 (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     : 7.03 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 321.82 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.2646e+04 | 82944 |      1 | 1.576e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.605865761659036 (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.29 us    (1.5%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 384.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5981e+04 | 82944 |      1 | 1.092e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4694022116903556 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.57s (niter = 2) global walltime = 32.88s (max_walltime = 45.51s)  [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     : 6.66 us    (1.8%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 355.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
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.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.5701e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6754790162028972 (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.98 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 406.72 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.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.4343e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7821852768200275 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.52s (niter = 2) global walltime = 35.09s (max_walltime = 45.51s)  [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     : 6.49 us    (1.9%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 314.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5247e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8562039274446557 (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     : 6.39 us    (1.5%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 418.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2887e+04 | 82944 |      1 | 1.568e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6229607402350994 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.27s (niter = 1) global walltime = 37.76s (max_walltime = 45.51s)  [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     : 7.32 us    (2.1%)
   patch tree reduce : 2.60 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 332.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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.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.5601e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.45044572152666945 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.26s (niter = 1) global walltime = 38.86s (max_walltime = 45.51s)  [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.24 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 329.95 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.36 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5455e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6150605860331052 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.25s (niter = 1) global walltime = 39.96s (max_walltime = 45.51s)  [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.79 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 413.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5434e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7153015847152533 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 41.06s (max_walltime = 45.51s)  [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.59 us    (1.6%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 331.94 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.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.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.3725e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7557549143639832 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 42.19s (max_walltime = 45.51s)  [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.80 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 319.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.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.2436e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7718966222467375 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 43.33s (max_walltime = 45.51s)  [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     : 6.25 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 315.88 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5412e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8161954217784289 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 44.44s (max_walltime = 45.51s)  [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.34 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.18 us    (0.3%)
   LB compute        : 364.79 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 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 = (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.5863e+04 | 82944 |      1 | 1.093e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.823446384279851 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 45.53s > 45.51s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 1):
   -> walltime = 45.530070563 >= 45.513527921000005
--------------------------------
[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     : 6.64 us    (60.2%)
Info: dump to _to_trash/sod_128/dump/dump_0000001.sham                      [Shamrock Dump][rank=0]
              - took 5.62 ms, bandwidth = 2.60 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 45.530070563 -> 75.53007056300001

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 75.53s)       [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.34 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 397.02 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.08 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.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.5816e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8192641622974206 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.57s (niter = 6) global walltime = 46.63s (max_walltime = 75.53s)  [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     : 6.03 us    (1.4%)
   patch tree reduce : 1.81 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.3%)
   LB compute        : 408.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5434e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8081339461199335 (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     : 6.59 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 351.72 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.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.5800e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8033055392493977 (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.54 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.4%)
   LB compute        : 361.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 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 = (-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.4818e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7835704941610941 (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.46 us    (1.9%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 320.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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 = (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    | 7.5663e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7826609116994475 (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     : 6.79 us    (1.8%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 355.79 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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 = (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.3024e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.745866150735215 (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     : 7.26 us    (1.8%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 386.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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.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.4280e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7485498889169666 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.54s (niter = 5) global walltime = 53.29s (max_walltime = 75.53s)  [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     : 6.06 us    (1.5%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.4%)
   LB compute        : 376.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
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.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.5441e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7505222198020649 (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     : 7.13 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 368.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.5500e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7419782403047439 (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.89 us    (1.9%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 389.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4513e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7238813925048134 (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.34 us    (1.8%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 324.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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 = (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.5197e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7226566469547969 (tsim/hr)                            [sph::Model][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     : 6.32 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.5%)
   LB compute        : 331.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5051e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7139800154824925 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.32s (niter = 3) global walltime = 58.82s (max_walltime = 75.53s)  [SPH][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     : 6.09 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 315.68 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.4896e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7057778303814417 (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     : 7.56 us    (1.8%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 387.55 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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 = (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.4194e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.693020522921697 (tsim/hr)                             [sph::Model][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     : 7.79 us    (1.8%)
   patch tree reduce : 1.89 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 409.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5046e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6952336053083552 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.32s (niter = 3) global walltime = 62.15s (max_walltime = 75.53s)  [SPH][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     : 39.70 us   (10.0%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 344.35 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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.5046e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6899537574641076 (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     : 7.02 us    (1.8%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 361.82 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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 = (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.5417e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6884748661490285 (tsim/hr)                            [sph::Model][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     : 8.04 us    (2.2%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 339.43 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4199e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6729348409342375 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 65.48s (max_walltime = 75.53s)  [SPH][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.62 us    (1.6%)
   patch tree reduce : 1.72 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        : 394.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.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.5467e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6913947767541349 (tsim/hr)                            [sph::Model][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     : 7.01 us    (2.1%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 320.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.5748e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6900477283441809 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 67.67s (max_walltime = 75.53s)  [SPH][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.55 us    (1.8%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 351.87 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.06 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.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.2742e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6592496687491005 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 68.81s (max_walltime = 75.53s)  [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.04 us    (1.7%)
   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.42 us    (0.4%)
   LB compute        : 341.75 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.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.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.5359e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6797814120029554 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 69.91s (max_walltime = 75.53s)  [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     : 6.46 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 360.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.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.5000e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6737047832242097 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 71.02s (max_walltime = 75.53s)  [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     : 6.11 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 370.97 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.12 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.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.5004e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6712159654865691 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 72.13s (max_walltime = 75.53s)  [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.97 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 400.72 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.59 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.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.5103e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6721942229923521 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 73.23s (max_walltime = 75.53s)  [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.59 us    (1.5%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 340.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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 = (-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.3272e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6626657784088095 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 74.37s (max_walltime = 75.53s)  [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     : 5.86 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 345.09 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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 = (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.4878e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.676413899567682 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 75.48s (max_walltime = 75.53s)  [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.15 us    (1.6%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 365.30 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.25 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.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.5322e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6798774096768994 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 76.58s > 75.53s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 2):
   -> walltime = 76.57758400600001 >= 75.53007056300001
--------------------------------
[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.45 us    (55.6%)
Info: dump to _to_trash/sod_128/dump/dump_0000002.sham                      [Shamrock Dump][rank=0]
              - took 5.70 ms, bandwidth = 2.56 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 76.57758400600001 -> 106.57758400600001

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 106.58s)      [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.38 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 404.98 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.19 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.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.5191e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6783801822027848 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.62s (niter = 6) global walltime = 77.69s (max_walltime = 106.58s)  [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     : 6.33 us    (1.5%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 414.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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 = (-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.5101e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6774601927791412 (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.52 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 317.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4867e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6754611669762559 (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     : 6.37 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 356.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.2676e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6559941569262402 (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.51 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 362.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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 = (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.3468e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6636474094965265 (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.54 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 362.14 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4810e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6764717348216529 (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.10 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 356.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
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.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.2248e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6541649637307306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.49s (niter = 4) global walltime = 84.44s (max_walltime = 106.58s)  [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     : 6.08 us    (1.6%)
   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.23 us    (0.3%)
   LB compute        : 361.51 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.08 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.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.5546e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6851107418058113 (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     : 6.59 us    (1.8%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 352.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4918e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6806669139818875 (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.79 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 356.07 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.4877e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7013439744919472 (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.50 us    (1.6%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 394.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.4971e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7050993751587601 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 88.86s (max_walltime = 106.58s)  [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     : 6.47 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 357.59 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.04 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5099e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.709450179196346 (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     : 7.83 us    (1.7%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.2%)
   LB compute        : 450.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 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.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.5043e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7123169631970004 (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     : 7.50 us    (1.8%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 397.48 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1055e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6779168642150204 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 92.24s (max_walltime = 106.58s)  [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.81 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 326.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5153e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7209271787522307 (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.62 us    (1.6%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 393.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.4914e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.722808130067627 (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     : 8.42 us    (2.3%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 334.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.4337e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7216469672831597 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 95.57s (max_walltime = 106.58s)  [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.80 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 396.37 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.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.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.3343e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7166191990563261 (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     : 7.84 us    (1.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 391.22 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3082e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7189413718616021 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 97.84s (max_walltime = 106.58s)  [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     : 6.21 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 392.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4844e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7415613726027344 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 98.95s (max_walltime = 106.58s)  [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     : 6.19 us    (1.5%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 397.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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 = (-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.5226e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.750970496943854 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 100.05s (max_walltime = 106.58s)  [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.74 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 373.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3121e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7357202610853709 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 101.19s (max_walltime = 106.58s)  [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     : 6.03 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 341.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.4872e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7595514840339743 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 102.29s (max_walltime = 106.58s)  [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.96 us    (1.4%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 407.60 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.42 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4514e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7678675746471885 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 103.41s (max_walltime = 106.58s)  [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.67 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 365.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.4934e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7884929865477371 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 104.52s (max_walltime = 106.58s)  [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     : 6.36 us    (1.6%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 386.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
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.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.5514e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8189159979470195 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 105.62s (max_walltime = 106.58s)  [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.61 us    (1.6%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 320.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5209e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8319606566421038 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 106.72s > 106.58s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 3):
   -> walltime = 106.719550693 >= 106.57758400600001
--------------------------------
[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.82 us    (58.9%)
Info: dump to _to_trash/sod_128/dump/dump_0000003.sham                      [Shamrock Dump][rank=0]
              - took 5.70 ms, bandwidth = 2.56 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 106.719550693 -> 136.719550693

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 136.72s)      [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     : 5.53 us    (1.4%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 367.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.5281e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8423304475053834 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.62s (niter = 6) global walltime = 107.83s (max_walltime = 136.72s)  [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.87 us    (1.5%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 374.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.4552e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8656679366939032 (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     : 8.30 us    (2.3%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 337.45 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 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.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.4117e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8907534934544086 (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     : 7.25 us    (1.9%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 355.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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.4919e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9092913484219115 (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     : 7.07 us    (2.0%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 335.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.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.4269e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9216952876525839 (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     : 7.43 us    (1.9%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 372.90 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4743e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9281867886151528 (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     : 6.64 us    (1.7%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 363.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.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.4838e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9233235389792463 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.45s (niter = 4) global walltime = 114.51s (max_walltime = 136.72s)  [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.61 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 346.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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.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.5010e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9604822840906675 (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     : 7.05 us    (1.9%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 358.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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 = (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.4777e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9558981117754605 (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.76 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 345.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.4931e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9564894924813637 (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     : 8.29 us    (2.3%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 340.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.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.3209e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9333587310710026 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 118.97s (max_walltime = 136.72s)  [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     : 6.18 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 338.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
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.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.5280e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9587691448111892 (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.40 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 346.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4887e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9529702289598253 (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.87 us    (1.6%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 397.69 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.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.3166e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9304826197272421 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 122.32s (max_walltime = 136.72s)  [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     : 6.39 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 317.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.5040e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9539117441410998 (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.01 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 398.25 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.28 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.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.4901e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9519261030215042 (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.80 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 378.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.4837e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9510932000290306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 125.64s (max_walltime = 136.72s)  [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.95 us    (1.5%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 370.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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 = (-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.5101e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9546356312124988 (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.63 us    (1.6%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.4%)
   LB compute        : 394.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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    | 6.8884e+04 | 82944 |      1 | 1.204e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8759650194257521 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 127.95s (max_walltime = 136.72s)  [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     : 6.79 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 385.18 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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.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.3279e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9324387664861847 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 129.08s (max_walltime = 136.72s)  [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     : 6.04 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 364.22 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.10 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.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.5312e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9591307757668133 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 130.19s (max_walltime = 136.72s)  [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.15 us    (1.6%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 354.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5119e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9577189843215898 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 131.29s (max_walltime = 136.72s)  [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.68 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 330.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 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 = (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.4682e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9534319979148711 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 132.40s (max_walltime = 136.72s)  [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.96 us    (1.8%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 316.32 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4058e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9469768026828417 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 133.52s (max_walltime = 136.72s)  [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.6%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 344.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 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.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.4899e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9595290357464918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 134.63s (max_walltime = 136.72s)  [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.59 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 373.25 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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 = (-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.4273e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9535365009807671 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 135.75s (max_walltime = 136.72s)  [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.74 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 327.29 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.4050e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9529708414773801 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 136.87s > 136.72s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 4):
   -> walltime = 136.871767183 >= 136.719550693
--------------------------------
[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     : 6.18 us    (53.8%)
Info: dump to _to_trash/sod_128/dump/dump_0000004.sham                      [Shamrock Dump][rank=0]
              - took 5.86 ms, bandwidth = 2.49 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 136.871767183 -> 166.871767183

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 166.87s)      [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     : 6.33 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 329.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.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.4417e+04 | 82944 |      1 | 1.115e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9602957155397753 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.69s (niter = 6) global walltime = 138.00s (max_walltime = 166.87s)  [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     : 8.20 us    (2.4%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 320.76 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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.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.4407e+04 | 82944 |      1 | 1.115e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9630394328792345 (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.99 us    (1.8%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 373.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 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.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.2359e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9396342288449021 (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.28 us    (1.9%)
   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.15 us    (0.3%)
   LB compute        : 353.60 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 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 = (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.4172e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9666648836621409 (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     : 7.60 us    (2.2%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 330.18 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 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.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.3547e+04 | 82944 |      1 | 1.128e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9624039830509954 (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.98 us    (1.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 352.12 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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 = (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.4114e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9740309626896771 (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     : 7.14 us    (1.7%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 388.38 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.4106e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9784944022508586 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.50s (niter = 4) global walltime = 144.75s (max_walltime = 166.87s)  [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.62 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 388.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.3484e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2870709967159324 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 115                                                     [SPH][rank=0]
Info: time since start : 145.87966782700002 (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.871767183 (current = 146.48897817900001)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 166.87s)      [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     : 6.02 us    (1.5%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 383.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 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.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.3851e+04 | 82944 |      1 | 1.123e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9989976270151464 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.50s (niter = 4) global walltime = 147.61s (max_walltime = 166.87s)  [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.73 us    (1.7%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 369.32 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.52 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 = (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.4143e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0083782768711076 (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.74 us    (1.6%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 389.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3476e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0050125927267097 (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     : 7.75 us    (1.8%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 413.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (78.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5161e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0341885478803161 (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     : 7.28 us    (2.1%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 326.10 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
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.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    | 7.4199e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.027288586587299 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.36s (niter = 3) global walltime = 152.09s (max_walltime = 166.87s)  [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.53 us    (1.6%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 379.23 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 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.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.5151e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0471548294254114 (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.88 us    (1.6%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 396.64 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4726e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.048165314686762 (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     : 6.76 us    (1.5%)
   patch tree reduce : 1.97 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 433.54 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.09 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.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.4897e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0577860917615067 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 155.41s (max_walltime = 166.87s)  [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     : 6.14 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 352.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.5230e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0700494533424416 (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.24 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 376.31 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.43 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.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.3454e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0524418649184557 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 157.64s (max_walltime = 166.87s)  [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     : 7.43 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.4%)
   LB compute        : 400.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.1889e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0378089101928138 (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     : 6.65 us    (1.6%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 397.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4938e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0646174822658965 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 159.91s (max_walltime = 166.87s)  [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     : 5.79 us    (1.5%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 375.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 7.4699e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0694008114090614 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 161.02s (max_walltime = 166.87s)  [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     : 6.17 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 339.63 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
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.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.4267e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0719122730533004 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 162.14s (max_walltime = 166.87s)  [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     : 6.37 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.72 us    (0.4%)
   LB compute        : 368.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3613e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0717345193955907 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 163.26s (max_walltime = 166.87s)  [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.60 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.55 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.85 us    (0.5%)
   LB compute        : 384.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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 = (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.4595e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0960792457825375 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 164.38s (max_walltime = 166.87s)  [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     : 6.66 us    (1.6%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 403.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3599e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.092039162575875 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 165.50s (max_walltime = 166.87s)  [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.88 us    (1.3%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 1.10 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 449.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.4349e+04 | 82944 |      1 | 1.116e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1146312607540698 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 166.62s (max_walltime = 166.87s)  [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     : 6.00 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 403.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.5115e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1380216659760634 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 167.73s > 166.87s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 5):
   -> walltime = 167.726719414 >= 166.871767183
--------------------------------
[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.13 us    (56.7%)
Info: dump to _to_trash/sod_128/dump/dump_0000005.sham                      [Shamrock Dump][rank=0]
              - took 7.59 ms, bandwidth = 1.92 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 167.726719414 -> 197.726719414

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

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 197.73s)      [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     : 5.61 us    (1.3%)
   patch tree reduce : 1.94 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 419.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.5342e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1524858877818525 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.61s (niter = 6) global walltime = 168.84s (max_walltime = 197.73s)  [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     : 6.16 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 377.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.2338e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1136800936879137 (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.37 us    (1.6%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 387.58 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.39 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1529e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1044308905568554 (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     : 7.37 us    (1.7%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 419.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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.3676e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1415206730624892 (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.61 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 : 1.12 us    (0.3%)
   LB compute        : 333.36 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3439e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1111634683248273 (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.61 us    (1.6%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 380.96 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
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.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.5748e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1564545996778164 (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.61 us    (1.6%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 384.47 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.39 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5767e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.162340657190001 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.49s (niter = 4) global walltime = 175.60s (max_walltime = 197.73s)  [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.34 us    (1.6%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 381.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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.5188e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1563596082690863 (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.69 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 383.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5635e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.16671594128989 (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.55 us    (1.9%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 370.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.5009e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.161075547563748 (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     : 7.21 us    (2.0%)
   patch tree reduce : 2.56 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 329.38 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4899e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1639302300743424 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 180.01s (max_walltime = 197.73s)  [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     : 6.20 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 325.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4779e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1671997425508862 (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.53 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 362.34 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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.3480e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1525555552697146 (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.82 us    (2.0%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 319.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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.4887e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.159125385330424 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 183.36s (max_walltime = 197.73s)  [SPH][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     : 6.21 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 361.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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.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.4611e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1579545172688381 (tsim/hr)                            [sph::Model][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     : 6.65 us    (1.5%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 420.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.4848e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1652954896663592 (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.68 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 405.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5344e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1772764793830142 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 186.69s (max_walltime = 197.73s)  [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.90 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 374.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.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.5268e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1809292847341324 (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     : 7.48 us    (1.7%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.3%)
   LB compute        : 408.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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    | 6.8396e+04 | 82944 |      1 | 1.213e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0780611477922084 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 189.00s (max_walltime = 197.73s)  [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     : 6.43 us    (1.6%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 380.21 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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.4763e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1844665618235695 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 190.11s (max_walltime = 197.73s)  [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     : 7.48 us    (1.9%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 373.67 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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.5365e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2007465761281642 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 191.22s (max_walltime = 197.73s)  [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     : 6.10 us    (1.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 403.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
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.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.5104e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2039817503083086 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 192.32s (max_walltime = 197.73s)  [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     : 5.94 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 367.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5204e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2137020009796706 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 193.43s (max_walltime = 197.73s)  [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     : 6.42 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 321.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.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.5062e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1395351992997027 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 194.53s (max_walltime = 197.73s)  [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     : 6.27 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 369.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
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.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.5453e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1526568985139027 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 195.63s (max_walltime = 197.73s)  [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.14 us    (1.6%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 352.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.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.5393e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.159422331776678 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 196.73s (max_walltime = 197.73s)  [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     : 6.28 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 325.13 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 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.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.5064e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1625817727421792 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 197.84s > 197.73s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 6):
   -> walltime = 197.83884436900001 >= 197.726719414
--------------------------------
[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     : 6.09 us    (57.6%)
Info: dump to _to_trash/sod_128/dump/dump_0000006.sham                      [Shamrock Dump][rank=0]
              - took 5.53 ms, bandwidth = 2.64 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 197.83884436900001 -> 227.83884436900001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.04312137181401441)
   -> iter = None (current = 160)
   -> walltime = 227.83884436900001 (current = 197.848965455)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 227.84s)      [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.79 us    (1.3%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 410.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.4761e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1666497702800278 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.66s (niter = 6) global walltime = 198.96s (max_walltime = 227.84s)  [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     : 6.16 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 329.87 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 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.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.5401e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1860745111017206 (tsim/hr)                            [sph::Model][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     : 6.81 us    (1.8%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 364.98 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.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.2231e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1458799988860142 (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     : 7.51 us    (1.8%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 394.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4648e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1474866778707276 (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     : 6.39 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 386.06 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 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.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.4963e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1597614248527353 (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     : 7.16 us    (2.0%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 332.61 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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 = (-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.5282e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1727080936326975 (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.00 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 412.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
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.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.5452e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1839797482074468 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.45s (niter = 4) global walltime = 205.63s (max_walltime = 227.84s)  [SPH][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.15 us    (1.6%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 373.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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.5080e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1873229727929817 (tsim/hr)                            [sph::Model][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     : 6.71 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 321.89 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.5712e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2072157520378368 (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.24 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 328.23 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 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.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.5123e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2083020902672952 (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     : 6.57 us    (1.6%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 401.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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.2036e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.168542149074921 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 210.09s (max_walltime = 227.84s)  [SPH][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.26 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 357.65 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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 = (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.5352e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2329202735445324 (tsim/hr)                            [sph::Model][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     : 7.15 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.09 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 422.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4501e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2302088639138984 (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.66 us    (1.7%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 366.14 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 10.85 us   (2.7%)
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.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.4831e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2476719420983888 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 213.42s (max_walltime = 227.84s)  [SPH][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     : 5.42 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 396.80 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 6.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5114e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2652634577047885 (tsim/hr)                            [sph::Model][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     : 6.75 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.18 us    (0.3%)
   LB compute        : 441.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3634e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2537813426580227 (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.34 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 347.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 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.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.5187e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2300630341152643 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 216.75s (max_walltime = 227.84s)  [SPH][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     : 5.54 us    (1.5%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 361.80 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.66 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.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.2166e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1906719912392485 (tsim/hr)                            [sph::Model][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     : 8.57 us    (1.9%)
   patch tree reduce : 1.91 us    (0.4%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 426.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5470e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.256369728022525 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 219.01s (max_walltime = 227.84s)  [SPH][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     : 5.94 us    (1.4%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 389.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.5116e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2623644627282373 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 220.11s (max_walltime = 227.84s)  [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     : 6.44 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 319.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
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.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.3027e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2395815084600654 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 221.25s (max_walltime = 227.84s)  [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.56 us    (1.5%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 358.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
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.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.4600e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2794374173010727 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 222.36s (max_walltime = 227.84s)  [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     : 6.04 us    (1.4%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 411.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5315e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.268896745414761 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 223.46s (max_walltime = 227.84s)  [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     : 6.86 us    (1.6%)
   patch tree reduce : 1.77 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        : 398.86 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 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.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.5133e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2767311428793353 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 224.57s (max_walltime = 227.84s)  [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.46 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 371.92 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.20 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.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.5288e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2909393900143267 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 225.67s (max_walltime = 227.84s)  [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     : 6.02 us    (1.6%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 366.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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.5723e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3025818289887265 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 226.77s (max_walltime = 227.84s)  [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.17 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 363.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.5470e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3006786702827968 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 227.87s > 227.84s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 7):
   -> walltime = 227.86663074400002 >= 227.83884436900001
--------------------------------
[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     : 6.28 us    (58.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000007.sham                      [Shamrock Dump][rank=0]
              - took 7.54 ms, bandwidth = 1.94 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 227.86663074400002 -> 257.866630744

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.053320187963158974)
   -> iter = None (current = 187)
   -> walltime = 257.866630744 (current = 227.878483485)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 257.87s)      [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.13 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 359.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5945e+04 | 82944 |      1 | 1.092e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2872028732032643 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.56s (niter = 6) global walltime = 228.97s (max_walltime = 257.87s)  [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.62 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 319.74 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 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.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.3012e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2413594429197536 (tsim/hr)                            [sph::Model][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     : 7.55 us    (2.1%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 333.14 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4702e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1089311935903812 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 191                                                     [SPH][rank=0]
Info: time since start : 231.220181225 (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 = 257.866630744 (current = 232.261767472)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 257.87s)      [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     : 6.10 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 393.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.5406e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2912788259303076 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.50s (niter = 5) global walltime = 233.36s (max_walltime = 257.87s)  [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     : 6.06 us    (1.3%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.13 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.2%)
   LB compute        : 432.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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.5822e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3042092547799897 (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.67 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 376.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 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 = (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.5814e+04 | 82944 |      1 | 1.094e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.31060476885179 (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.86 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 353.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3910e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2595364119592458 (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     : 6.89 us    (1.7%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 385.85 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.32 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5746e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2946691492917208 (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     : 6.06 us    (1.5%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.44 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.47 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5903e+04 | 82944 |      1 | 1.093e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.301846404934616 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.40s (niter = 4) global walltime = 238.87s (max_walltime = 257.87s)  [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     : 6.82 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 346.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2133e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2420317221910306 (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     : 6.51 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 308.02 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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.4518e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2887561532907739 (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.50 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 349.55 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.45 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.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.5116e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.305446019566419 (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     : 6.88 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 355.25 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.5884e+04 | 82944 |      1 | 1.093e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3200228628617503 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.32s (niter = 3) global walltime = 243.33s (max_walltime = 257.87s)  [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.88 us    (1.3%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.4%)
   LB compute        : 422.43 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.40 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5487e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.318470937903416 (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     : 6.27 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 358.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 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.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.4857e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2983843692131025 (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.50 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 370.95 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 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.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.5595e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3212967436537972 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.21s (niter = 2) global walltime = 246.64s (max_walltime = 257.87s)  [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.37 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 372.25 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.65 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.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.0436e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2410976558262936 (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.46 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 370.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5408e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2605733358059128 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 248.92s (max_walltime = 257.87s)  [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     : 6.09 us    (1.5%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.3%)
   LB compute        : 397.00 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.24 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2634e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.22225211468519 (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.44 us    (1.5%)
   patch tree reduce : 1.94 us    (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.2%)
   LB compute        : 421.04 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.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4947e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2700433086610243 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 251.17s (max_walltime = 257.87s)  [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     : 5.84 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 409.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2157e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2318676224974638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 252.32s (max_walltime = 257.87s)  [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     : 6.31 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.05 us    (0.3%)
   LB compute        : 368.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5533e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2996665313253595 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 253.42s (max_walltime = 257.87s)  [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     : 5.89 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 320.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.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.2418e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2564453227847399 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 254.56s (max_walltime = 257.87s)  [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     : 6.00 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 364.73 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5081e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2599504875909462 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 255.67s (max_walltime = 257.87s)  [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.87 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 359.98 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5463e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.274591806430538 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 256.77s (max_walltime = 257.87s)  [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.02 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 341.78 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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.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.5321e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2809677530619832 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 257.87s > 257.87s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 8):
   -> walltime = 257.871014107 >= 257.866630744
--------------------------------
[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.82 us    (57.6%)
Info: dump to _to_trash/sod_128/dump/dump_0000008.sham                      [Shamrock Dump][rank=0]
              - took 7.45 ms, bandwidth = 1.96 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 257.871014107 -> 287.871014107

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.06354275722133543)
   -> iter = None (current = 213)
   -> walltime = 287.871014107 (current = 257.882798517)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 287.87s)      [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.68 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 377.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.5503e+04 | 82944 |      1 | 1.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2934630573185242 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.60s (niter = 6) global walltime = 258.98s (max_walltime = 287.87s)  [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     : 6.33 us    (1.7%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 352.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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.5056e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.295761554345521 (tsim/hr)                             [sph::Model][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     : 6.68 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 326.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.5355e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3115720914873672 (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.92 us    (1.9%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 342.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4717e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.295633327155578 (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.74 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 345.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.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.3531e+04 | 82944 |      1 | 1.128e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.284923203882029 (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.00 us    (1.7%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 342.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.5194e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3246992723100883 (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.30 us    (1.7%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 359.87 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.46 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4795e+04 | 82944 |      1 | 1.109e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3290050815925338 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.54s (niter = 5) global walltime = 265.64s (max_walltime = 287.87s)  [SPH][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     : 5.87 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 315.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.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.3589e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.31938011392172 (tsim/hr)                              [sph::Model][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     : 6.38 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 318.04 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.96 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2789e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2969108545871468 (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     : 6.89 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 317.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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.5533e+04 | 82944 |      1 | 1.098e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3184012943317898 (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     : 7.04 us    (1.9%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 354.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
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.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.5252e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3235364084563823 (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.65 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 344.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.5620e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3407407080248943 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.33s (niter = 3) global walltime = 271.21s (max_walltime = 287.87s)  [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     : 5.70 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 332.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.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.4092e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3247997261730258 (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     : 6.52 us    (1.7%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 372.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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 = (-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.5282e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3580755343749669 (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.00 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 351.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.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.5090e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3421575798319205 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.33s (niter = 3) global walltime = 274.54s (max_walltime = 287.87s)  [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.91 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 391.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.4941e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3213344860576575 (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.18 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 422.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.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.5084e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3336415519328584 (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.72 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 356.04 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.05 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 = (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.2679e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3009699443881584 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.22s (niter = 2) global walltime = 277.90s (max_walltime = 287.87s)  [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.68 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 323.20 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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.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.5688e+04 | 82944 |      1 | 1.096e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3658942204984887 (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     : 6.43 us    (1.9%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 324.33 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5730e+04 | 82944 |      1 | 1.095e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.349313358532814 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 280.09s (max_walltime = 287.87s)  [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     : 6.33 us    (1.5%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 398.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 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.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.3955e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3220875066956908 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 281.21s (max_walltime = 287.87s)  [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     : 5.55 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 373.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1420e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2659134479557594 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.11s (niter = 1) global walltime = 282.38s (max_walltime = 287.87s)  [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     : 5.82 us    (1.5%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 374.92 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.27 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5251e+04 | 82944 |      1 | 1.102e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3437730809599058 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 283.48s (max_walltime = 287.87s)  [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     : 5.91 us    (1.4%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 399.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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.5118e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3519060585780895 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 284.58s (max_walltime = 287.87s)  [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     : 6.02 us    (1.6%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 364.82 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.10 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.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.5623e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.348857791261916 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 285.68s (max_walltime = 287.87s)  [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.78 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 409.73 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.55 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.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.3864e+04 | 82944 |      1 | 1.123e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3213721321591745 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 286.81s (max_walltime = 287.87s)  [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     : 6.03 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 407.45 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.1%)
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.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.5584e+04 | 82944 |      1 | 1.097e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3324004123265003 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 287.90s > 287.87s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 9):
   -> walltime = 287.904611876 >= 287.871014107
--------------------------------
[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     : 6.11 us    (55.7%)
Info: dump to _to_trash/sod_128/dump/dump_0000009.sham                      [Shamrock Dump][rank=0]
              - took 7.45 ms, bandwidth = 1.96 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 287.904611876 -> 317.904611876

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.0745623840332957)
   -> iter = None (current = 240)
   -> walltime = 317.904611876 (current = 287.916161599)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 317.90s)      [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.04 us    (1.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 399.32 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.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.5419e+04 | 82944 |      1 | 1.100e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3388201014404528 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.60s (niter = 6) global walltime = 289.02s (max_walltime = 317.90s)  [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.99 us    (1.5%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 381.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 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 = (-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.4831e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3382492557160524 (tsim/hr)                            [sph::Model][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.65 us    (1.8%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 349.09 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 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.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.5136e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3503389082436146 (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.44 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 341.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.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.4245e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3384784202382665 (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.46 us    (1.7%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 359.92 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.5337e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3630485518952198 (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.55 us    (2.0%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 314.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 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.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.3645e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2992547273856434 (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.45 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 343.03 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.87 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3641e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3081549190048063 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.45s (niter = 4) global walltime = 295.71s (max_walltime = 317.90s)  [SPH][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.15 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 412.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 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.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.4963e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3413711242547637 (tsim/hr)                            [sph::Model][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     : 6.76 us    (1.7%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 368.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.4945e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3506540868349497 (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.93 us    (1.6%)
   patch tree reduce : 1.95 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.2%)
   LB compute        : 423.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
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.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.5114e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3123579242482615 (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     : 6.54 us    (1.6%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 390.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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.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.4654e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3130501176563834 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.33s (niter = 3) global walltime = 300.14s (max_walltime = 317.90s)  [SPH][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.13 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 394.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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.5040e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3292002993180256 (tsim/hr)                            [sph::Model][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     : 6.19 us    (1.5%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 401.16 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.20 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.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.2160e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2877859841319903 (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.79 us    (1.7%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 376.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5154e+04 | 82944 |      1 | 1.104e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.351845358125042 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.34s (niter = 3) global walltime = 303.50s (max_walltime = 317.90s)  [SPH][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     : 6.78 us    (1.5%)
   patch tree reduce : 1.93 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 431.66 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.51 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4912e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.358767184549106 (tsim/hr)                             [sph::Model][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     : 6.17 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 407.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
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.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.2805e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.276395615343903 (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.61 us    (1.8%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 347.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2864e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2860217979842419 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.23s (niter = 2) global walltime = 306.89s (max_walltime = 317.90s)  [SPH][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     : 5.76 us    (1.5%)
   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.12 us    (0.3%)
   LB compute        : 371.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.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.5024e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.40277377568206385 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 259                                                     [SPH][rank=0]
Info: time since start : 307.99431858 (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 = 317.904611876 (current = 308.60919293700005)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 317.90s)      [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.81 us    (1.5%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 355.59 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.13 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.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    | 6.8581e+04 | 82944 |      1 | 1.209e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.221918678726775 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.21s (niter = 1) global walltime = 309.82s (max_walltime = 317.90s)  [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.94 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 329.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4523e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3377858289004079 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 310.93s (max_walltime = 317.90s)  [SPH][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     : 5.94 us    (1.4%)
   patch tree reduce : 1.74 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        : 419.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.2371e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3096556607287704 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 312.08s (max_walltime = 317.90s)  [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.90 us    (1.3%)
   patch tree reduce : 1.90 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 435.06 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2967e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2966832977257916 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 313.22s (max_walltime = 317.90s)  [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     : 6.21 us    (1.6%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 362.42 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.45 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.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.5307e+04 | 82944 |      1 | 1.101e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.347792217613671 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 314.32s (max_walltime = 317.90s)  [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.63 us    (0.8%)
   patch tree reduce : 1.97 us    (0.3%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.2%)
   LB compute        : 679.53 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4849e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3496714068973168 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 315.43s (max_walltime = 317.90s)  [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     : 6.64 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 31.58 us   (8.0%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 342.34 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
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.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.5193e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3666561832102018 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 316.53s (max_walltime = 317.90s)  [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     : 6.50 us    (0.9%)
   patch tree reduce : 1.63 us    (0.2%)
   gen split merge   : 982.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.2%)
   LB compute        : 673.17 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 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.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.2464e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.315901184615378 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 317.68s (max_walltime = 317.90s)  [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     : 5.99 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 375.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3273e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.296715715763504 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 318.81s > 317.90s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 10):
   -> walltime = 318.81301796500003 >= 317.904611876
--------------------------------
[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.79 us    (54.3%)
Info: dump to _to_trash/sod_128/dump/dump_0000010.sham                      [Shamrock Dump][rank=0]
              - took 5.25 ms, bandwidth = 2.78 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 318.81301796500003 -> 348.81301796500003

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.0853898558400891)
   -> iter = None (current = 267)
   -> walltime = 348.81301796500003 (current = 318.82237246100004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 348.81s)      [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     : 3.97 us    (1.2%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 652.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 307.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.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.4203e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3220374034887656 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.71s (niter = 6) global walltime = 319.94s (max_walltime = 348.81s)  [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     : 6.36 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 350.82 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 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.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.5012e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3460310972407419 (tsim/hr)                            [sph::Model][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.60 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 364.68 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2936e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.318684909376209 (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     : 6.33 us    (1.7%)
   patch tree reduce : 33.93 us   (9.1%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 321.67 us  (85.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.5095e+04 | 82944 |      1 | 1.105e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3620564574855494 (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     : 6.56 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 378.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.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.2865e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.325129907202196 (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     : 7.77 us    (1.7%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 426.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 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.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.4715e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3298957290641102 (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     : 5.99 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 381.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5025e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3446057751456397 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.47s (niter = 4) global walltime = 326.65s (max_walltime = 348.81s)  [SPH][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.05 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 319.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
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.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.3161e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3207247733911622 (tsim/hr)                            [sph::Model][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     : 6.37 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 : 1.17 us    (0.3%)
   LB compute        : 343.07 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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.4993e+04 | 82944 |      1 | 1.106e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.360262396618864 (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.38 us    (1.6%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 388.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4950e+04 | 82944 |      1 | 1.107e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3631370608275764 (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     : 8.35 us    (2.0%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 390.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 7.3861e+04 | 82944 |      1 | 1.123e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3082363963469414 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.35s (niter = 3) global walltime = 331.12s (max_walltime = 348.81s)  [SPH][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.43 us    (1.6%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 384.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2920e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2999926712965992 (tsim/hr)                            [sph::Model][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     : 6.48 us    (1.9%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 326.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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 = (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.4116e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3304486247679685 (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.22 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 306.81 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.5178e+04 | 82944 |      1 | 1.103e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3593859894491267 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.36s (niter = 3) global walltime = 334.48s (max_walltime = 348.81s)  [SPH][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.10 us    (1.4%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 408.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.1%)
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.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.4546e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3542898042783855 (tsim/hr)                            [sph::Model][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     : 6.60 us    (1.7%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 365.64 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.44 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.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.4859e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3258720827527504 (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.34 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 339.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.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.3477e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3098360043333104 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.24s (niter = 2) global walltime = 337.84s (max_walltime = 348.81s)  [SPH][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     : 5.71 us    (1.5%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 352.18 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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    | 6.9736e+04 | 82944 |      1 | 1.189e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2517083331747505 (tsim/hr)                            [sph::Model][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     : 8.07 us    (2.1%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 371.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 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.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.4249e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3424417087406846 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 340.15s (max_walltime = 348.81s)  [SPH][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     : 5.75 us    (1.3%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 433.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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.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.3579e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.340595932070554 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 341.27s (max_walltime = 348.81s)  [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.15 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 331.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2218e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3209361751515802 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 342.42s (max_walltime = 348.81s)  [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.96 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 317.76 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 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.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.2780e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2903159235990196 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.12s (niter = 1) global walltime = 343.56s (max_walltime = 348.81s)  [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     : 6.13 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 330.34 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.13 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4675e+04 | 82944 |      1 | 1.111e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3325356137149031 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 344.68s (max_walltime = 348.81s)  [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     : 6.11 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 365.96 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4581e+04 | 82944 |      1 | 1.112e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.340058172180074 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 345.79s (max_walltime = 348.81s)  [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     : 6.13 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 368.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2185e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.306500174187251 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 346.94s (max_walltime = 348.81s)  [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     : 6.02 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 348.57 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    (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.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.4249e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3542506800788956 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 348.06s (max_walltime = 348.81s)  [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.5%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 358.05 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.03 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.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.4161e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.316189416950492 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 349.18s > 348.81s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 11):
   -> walltime = 349.177201712 >= 348.81301796500003
--------------------------------
[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     : 5.97 us    (56.1%)
Info: dump to _to_trash/sod_128/dump/dump_0000011.sham                      [Shamrock Dump][rank=0]
              - took 5.38 ms, bandwidth = 2.72 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 349.177201712 -> 379.177201712

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.0965806127841361)
   -> iter = None (current = 294)
   -> walltime = 379.177201712 (current = 349.18715008500004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 379.18s)      [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     : 4.77 us    (1.3%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 355.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.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.4027e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3225445209490827 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.73s (niter = 6) global walltime = 350.31s (max_walltime = 379.18s)  [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.97 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 347.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4284e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3364929359135092 (tsim/hr)                            [sph::Model][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     : 6.93 us    (1.6%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 406.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.3332e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3292159417608422 (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.56 us    (1.7%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 370.13 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.13 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.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.2155e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3181815760204783 (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     : 6.27 us    (1.5%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 401.93 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.34 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.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.2715e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2852726561606378 (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     : 6.29 us    (1.7%)
   patch tree reduce : 1.94 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        : 344.08 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.20 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.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.4513e+04 | 82944 |      1 | 1.113e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3254152670189263 (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     : 6.57 us    (1.7%)
   patch tree reduce : 1.65 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        : 355.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3819e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3219296857445326 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.52s (niter = 4) global walltime = 357.09s (max_walltime = 379.18s)  [SPH][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.24 us    (1.5%)
   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.09 us    (0.3%)
   LB compute        : 391.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2725e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3116633646666658 (tsim/hr)                            [sph::Model][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     : 6.76 us    (1.6%)
   patch tree reduce : 2.22 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 391.82 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.72 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.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.2189e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.311859031135455 (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     : 6.30 us    (1.4%)
   patch tree reduce : 1.95 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.3%)
   LB compute        : 417.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0089e+04 | 82944 |      1 | 1.183e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2833086694331968 (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.31 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 376.73 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.07 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.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.4025e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3232396285121357 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 361.69s (max_walltime = 379.18s)  [SPH][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.01 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 426.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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.2140e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2983541249256882 (tsim/hr)                            [sph::Model][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     : 6.44 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 374.89 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
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.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.3708e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.336177201413724 (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.47 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 378.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3818e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3484252000734696 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 365.09s (max_walltime = 379.18s)  [SPH][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.23 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 359.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3679e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3503878289431936 (tsim/hr)                            [sph::Model][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     : 6.20 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 341.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.4064e+04 | 82944 |      1 | 1.120e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3170917836080092 (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.38 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 364.02 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.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.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    | 6.9264e+04 | 82944 |      1 | 1.198e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2397567500963929 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.28s (niter = 2) global walltime = 368.53s (max_walltime = 379.18s)  [SPH][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     : 6.62 us    (1.6%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 396.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4152e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3364477286157423 (tsim/hr)                            [sph::Model][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     : 7.78 us    (2.0%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 366.95 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 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.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.3966e+04 | 82944 |      1 | 1.121e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3428789197895123 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 370.78s (max_walltime = 379.18s)  [SPH][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.00 us    (1.4%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 405.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0922e+04 | 82944 |      1 | 1.170e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2972079638101286 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 371.95s (max_walltime = 379.18s)  [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     : 6.25 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 335.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.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.3975e+04 | 82944 |      1 | 1.121e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3161510751858512 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 373.07s (max_walltime = 379.18s)  [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.58 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 354.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4252e+04 | 82944 |      1 | 1.117e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3295666824370258 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 374.19s (max_walltime = 379.18s)  [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.98 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 308.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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 = (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.2173e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3011601552748113 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 375.34s (max_walltime = 379.18s)  [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.45 us    (1.3%)
   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.13 us    (0.3%)
   LB compute        : 414.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3993e+04 | 82944 |      1 | 1.121e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.343615932939314 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 376.46s (max_walltime = 379.18s)  [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.07 us    (1.5%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 375.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.4112e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3560865775980644 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 377.58s (max_walltime = 379.18s)  [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.94 us    (1.4%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 397.84 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.58 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3098e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3424758030851498 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 378.72s (max_walltime = 379.18s)  [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     : 6.06 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 351.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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.3668e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3127871435523721 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 379.84s > 379.18s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 12):
   -> walltime = 379.842787213 >= 379.177201712
--------------------------------
[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     : 5.48 us    (54.7%)
Info: dump to _to_trash/sod_128/dump/dump_0000012.sham                      [Shamrock Dump][rank=0]
              - took 5.19 ms, bandwidth = 2.82 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 379.842787213 -> 409.842787213

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.10780700999915657)
   -> iter = None (current = 321)
   -> walltime = 409.842787213 (current = 379.85204011800005)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 409.84s)      [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     : 4.09 us    (1.0%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 407.07 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3763e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3230563964236028 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.75s (niter = 6) global walltime = 380.98s (max_walltime = 409.84s)  [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     : 6.02 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 349.94 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.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.3154e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.321219539542841 (tsim/hr)                             [sph::Model][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     : 6.24 us    (1.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 371.97 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.4885e+04 | 82944 |      1 | 1.108e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8206748744161603 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 325                                                     [SPH][rank=0]
Info: time since start : 383.221129956 (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 = 409.842787213 (current = 383.965972023)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 409.84s)      [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.81 us    (1.4%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 398.66 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.34 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2252e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3207093536927204 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.74s (niter = 5) global walltime = 385.12s (max_walltime = 409.84s)  [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.41 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 394.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2560e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2916599623643534 (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.42 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 391.27 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.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.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.4185e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.329061997768466 (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.45 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 : 911.00 ns  (0.2%)
   LB compute        : 410.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
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.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.1903e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2969574002968884 (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.70 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 377.51 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.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.2390e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3151956913745126 (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.55 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 326.55 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3945e+04 | 82944 |      1 | 1.122e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3537424714488757 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.56s (niter = 4) global walltime = 390.80s (max_walltime = 409.84s)  [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     : 5.86 us    (1.4%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 412.69 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.30 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3091e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3452755551508648 (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     : 6.45 us    (1.5%)
   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.09 us    (0.3%)
   LB compute        : 404.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
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.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.4093e+04 | 82944 |      1 | 1.119e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3208514380245582 (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.51 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 330.19 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.05 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.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.3801e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3242359145860771 (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     : 40.59 us   (10.0%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 351.55 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.2247e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3053561027080078 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.41s (niter = 3) global walltime = 395.33s (max_walltime = 409.84s)  [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.93 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 329.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.3710e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.341590977941085 (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.39 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 348.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.3608e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.350159295092968 (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.75 us    (1.7%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 377.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.89 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.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.2286e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2908679267836314 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 398.73s (max_walltime = 409.84s)  [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.95 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 352.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.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.1764e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2899665780304266 (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     : 6.07 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 426.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
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.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.2965e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.320702930772839 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 401.03s (max_walltime = 409.84s)  [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     : 6.23 us    (1.6%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 358.34 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.2330e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3189029306760909 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 402.18s (max_walltime = 409.84s)  [SPH][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     : 6.00 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 394.60 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.12 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.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.3192e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3450595307760667 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 403.31s (max_walltime = 409.84s)  [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     : 6.08 us    (1.6%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 362.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.1389e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3169746165307348 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 404.47s (max_walltime = 409.84s)  [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     : 6.01 us    (1.5%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 383.34 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.32 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.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.3681e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.318529123574366 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 405.60s (max_walltime = 409.84s)  [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     : 6.11 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 405.93 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.29 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.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.1246e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2835431987415438 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 406.77s (max_walltime = 409.84s)  [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.89 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 371.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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.3312e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3302018407833889 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 407.90s (max_walltime = 409.84s)  [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.28 us    (1.7%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 342.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 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.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.3053e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3355269845520512 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 409.04s (max_walltime = 409.84s)  [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     : 6.32 us    (1.5%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 388.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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.2081e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3270783052888495 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 410.19s > 409.84s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 13):
   -> walltime = 410.18683074700004 >= 409.842787213
--------------------------------
[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     : 5.88 us    (57.8%)
Info: dump to _to_trash/sod_128/dump/dump_0000013.sham                      [Shamrock Dump][rank=0]
              - took 5.17 ms, bandwidth = 2.83 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 410.18683074700004 -> 440.18683074700004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.11849743631454898)
   -> iter = None (current = 347)
   -> walltime = 440.18683074700004 (current = 410.196183096)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 440.19s)      [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     : 4.56 us    (1.3%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 327.23 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3755e+04 | 82944 |      1 | 1.125e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.323640172674836 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.75s (niter = 6) global walltime = 411.32s (max_walltime = 440.19s)  [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.78 us    (1.3%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 414.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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 = (-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    | 6.9649e+04 | 82944 |      1 | 1.191e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.25837994234008 (tsim/hr)                              [sph::Model][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     : 6.32 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 368.73 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.99 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.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.3252e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3329440388033684 (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.88 us    (1.6%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 397.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.3141e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.341019717611301 (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     : 6.38 us    (1.5%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 392.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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.3024e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3461018393726802 (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.93 us    (1.7%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 381.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3368e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.310337963606826 (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.87 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 354.94 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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.3463e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3205317621386041 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.56s (niter = 4) global walltime = 418.18s (max_walltime = 440.19s)  [SPH][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     : 5.89 us    (1.6%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 352.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.3319e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3269972708316495 (tsim/hr)                            [sph::Model][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     : 6.49 us    (1.1%)
   patch tree reduce : 1.73 us    (0.3%)
   gen split merge   : 731.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 555.87 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1202e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2980895038232017 (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.62 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 360.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.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.2649e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.334701800983242 (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     : 6.66 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 347.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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 = (-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.2894e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3034035940389073 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.43s (niter = 3) global walltime = 422.76s (max_walltime = 440.19s)  [SPH][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     : 5.99 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 318.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.4214e+04 | 82944 |      1 | 1.118e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3355646373746493 (tsim/hr)                            [sph::Model][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     : 6.55 us    (1.5%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 403.80 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.18 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.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.2293e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3098880405490883 (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.86 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 329.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3642e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3440112316891277 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.42s (niter = 3) global walltime = 426.15s (max_walltime = 440.19s)  [SPH][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     : 5.78 us    (0.9%)
   patch tree reduce : 1.75 us    (0.3%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.2%)
   LB compute        : 637.44 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.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.1287e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3110291352950232 (tsim/hr)                            [sph::Model][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     : 6.13 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 348.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.0698e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3061852790578994 (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     : 6.71 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 361.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.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.3762e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.321686399949614 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.28s (niter = 2) global walltime = 429.62s (max_walltime = 440.19s)  [SPH][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.04 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 331.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 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.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.1534e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2902062924155249 (tsim/hr)                            [sph::Model][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.74 us    (2.0%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 314.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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.1578e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3000365296144076 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 431.94s (max_walltime = 440.19s)  [SPH][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.01 us    (1.5%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 387.14 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.3440e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.343752061182694 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 433.07s (max_walltime = 440.19s)  [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     : 6.12 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 333.79 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.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.3514e+04 | 82944 |      1 | 1.128e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3554781123233695 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 434.20s (max_walltime = 440.19s)  [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     : 5.55 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 362.87 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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.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.1972e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2915275009756484 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.14s (niter = 1) global walltime = 435.35s (max_walltime = 440.19s)  [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.82 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 372.43 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.16 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2965e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3179967774670611 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 436.49s (max_walltime = 440.19s)  [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.49 us    (1.2%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.2%)
   LB compute        : 421.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.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.2200e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3133233510630828 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 437.64s (max_walltime = 440.19s)  [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     : 6.50 us    (1.5%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 400.11 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.34 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3064e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3389347898728532 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 438.78s (max_walltime = 440.19s)  [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.51 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 418.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2998e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3482484965770711 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 439.91s (max_walltime = 440.19s)  [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     : 5.55 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 325.91 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.3128e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.306339681608967 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 441.05s > 440.19s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 14):
   -> walltime = 441.04892016 >= 440.18683074700004
--------------------------------
[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.98 us    (56.9%)
Info: dump to _to_trash/sod_128/dump/dump_0000014.sham                      [Shamrock Dump][rank=0]
              - took 5.27 ms, bandwidth = 2.77 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 441.04892016 -> 471.04892016

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.12979484490596432)
   -> iter = None (current = 374)
   -> walltime = 471.04892016 (current = 441.058589605)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 471.05s)      [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.14 us    (1.5%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 320.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.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    | 6.9462e+04 | 82944 |      1 | 1.194e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2487298131318425 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.17s (niter = 6) global walltime = 442.25s (max_walltime = 471.05s)  [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     : 6.14 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 377.13 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.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.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.3292e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3264968069705754 (tsim/hr)                            [sph::Model][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     : 7.27 us    (2.1%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 323.22 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.0902e+04 | 82944 |      1 | 1.170e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2924462196135553 (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.34 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 317.68 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.3043e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3415944344295214 (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     : 6.63 us    (1.6%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 398.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3246e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3536556679798561 (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.52 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 365.18 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.1344e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2847759969240693 (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.52 us    (1.5%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 400.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.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.1479e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.295917458536719 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.62s (niter = 4) global walltime = 449.15s (max_walltime = 471.05s)  [SPH][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     : 5.85 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 348.89 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.24 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.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.2732e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3280868717915133 (tsim/hr)                            [sph::Model][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     : 6.55 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 336.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1788e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.320795340482783 (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.54 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 382.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2747e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3464962737022017 (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     : 6.78 us    (1.8%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 366.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.2863e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.306570072755175 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.46s (niter = 3) global walltime = 453.73s (max_walltime = 471.05s)  [SPH][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.12 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 339.51 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 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.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.2415e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3070060408414006 (tsim/hr)                            [sph::Model][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     : 6.87 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 378.13 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.48 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2718e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3215776948169724 (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     : 6.67 us    (1.7%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 367.92 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.41 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.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.3460e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.344863994951671 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.45s (niter = 3) global walltime = 457.15s (max_walltime = 471.05s)  [SPH][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     : 6.07 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 331.79 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.79 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1065e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3111187659605792 (tsim/hr)                            [sph::Model][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     : 6.70 us    (1.8%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 321.19 us  (84.4%)
   LB move op cnt    : 0
   LB apply          : 41.91 us   (11.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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.4727e+04 | 82944 |      1 | 1.110e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.057766630558293744 (tsim/hr)                          [sph::Model][rank=0]
Info: iteration since start : 391                                                     [SPH][rank=0]
Info: time since start : 459.42785018200004 (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 = 471.04892016 (current = 460.48273973600004)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 471.05s)      [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.88 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 403.27 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.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.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.3088e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3133184999423642 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.27s (niter = 2) global walltime = 461.62s (max_walltime = 471.05s)  [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     : 5.86 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 355.43 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.30 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.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    | 7.2956e+04 | 82944 |      1 | 1.137e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3192815984911492 (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     : 6.83 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 357.17 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
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.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.1329e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2987994534733973 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 463.92s (max_walltime = 471.05s)  [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.32 us    (1.4%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 362.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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.0627e+04 | 82944 |      1 | 1.174e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2954678954724927 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 465.10s (max_walltime = 471.05s)  [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.58 us    (1.3%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 419.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0298e+04 | 82944 |      1 | 1.180e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2994313961168646 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 466.28s (max_walltime = 471.05s)  [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.73 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 374.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.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.2725e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3489334965885627 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 467.42s (max_walltime = 471.05s)  [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     : 6.08 us    (1.6%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 366.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2256e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.301025651701434 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 468.57s (max_walltime = 471.05s)  [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     : 6.35 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 343.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.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.2640e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3167028116145076 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 469.71s (max_walltime = 471.05s)  [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.32 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 386.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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    | 6.8566e+04 | 82944 |      1 | 1.210e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2516885846608192 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 470.92s (max_walltime = 471.05s)  [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     : 6.36 us    (1.5%)
   patch tree reduce : 2.26 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 400.56 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.25 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.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.2391e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3314484183798492 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 472.07s > 471.05s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 15):
   -> walltime = 472.06784053300004 >= 471.04892016
--------------------------------
[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     : 6.56 us    (56.9%)
Info: dump to _to_trash/sod_128/dump/dump_0000015.sham                      [Shamrock Dump][rank=0]
              - took 5.79 ms, bandwidth = 2.52 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 472.06784053300004 -> 502.06784053300004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.14031399046808699)
   -> iter = None (current = 400)
   -> walltime = 502.06784053300004 (current = 472.07833576300004)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 502.07s)      [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.20 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 363.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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    | 6.8267e+04 | 82944 |      1 | 1.215e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2635731638953094 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.08s (niter = 5) global walltime = 473.29s (max_walltime = 502.07s)  [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     : 5.56 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 359.58 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
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.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.0647e+04 | 82944 |      1 | 1.174e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2735763772694035 (tsim/hr)                            [sph::Model][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     : 7.13 us    (1.8%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 372.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.2756e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3203584090209228 (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.83 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 328.42 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.2713e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3289126414790375 (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     : 7.49 us    (2.0%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 355.20 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.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.2284e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3309673082500608 (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.47 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.27 us    (0.3%)
   LB compute        : 351.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2520e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3443324229795366 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.64s (niter = 4) global walltime = 479.05s (max_walltime = 502.07s)  [SPH][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     : 5.71 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 347.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 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.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.0251e+04 | 82944 |      1 | 1.181e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.261377148619878 (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.71 us    (1.7%)
   patch tree reduce : 33.45 us   (8.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 349.37 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 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.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.1869e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2987381496018695 (tsim/hr)                            [sph::Model][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.94 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 359.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.2385e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3170183677050242 (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.82 us    (1.6%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 406.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.0710e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2958835911403104 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.49s (niter = 3) global walltime = 483.70s (max_walltime = 502.07s)  [SPH][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     : 5.74 us    (1.4%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 403.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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.2857e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3454757219669247 (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.10 us    (1.9%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 353.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2580e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.304407361319665 (tsim/hr)                             [sph::Model][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     : 6.88 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 352.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.00 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2537e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3120094231631008 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.47s (niter = 3) global walltime = 487.13s (max_walltime = 502.07s)  [SPH][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     : 5.93 us    (1.4%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 395.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
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.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    | 6.7539e+04 | 82944 |      1 | 1.228e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2299501151910837 (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     : 7.16 us    (1.8%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 384.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.2983e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.338709405039395 (tsim/hr)                             [sph::Model][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     : 7.19 us    (1.8%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 384.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.2766e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.344930028552645 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.32s (niter = 2) global walltime = 490.64s (max_walltime = 502.07s)  [SPH][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     : 5.84 us    (1.0%)
   patch tree reduce : 1.92 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.2%)
   LB compute        : 544.14 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2769e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3516019012099056 (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     : 7.07 us    (1.7%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 398.80 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.9259e+04 | 82944 |      1 | 1.198e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2475022935318416 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 492.98s (max_walltime = 502.07s)  [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     : 6.39 us    (1.4%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 419.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.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.2732e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3187111128599398 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 494.12s (max_walltime = 502.07s)  [SPH][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     : 6.36 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.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.0923e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2949151728577073 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 495.29s (max_walltime = 502.07s)  [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     : 6.23 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 331.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 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.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.2756e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.338234659943026 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 496.43s (max_walltime = 502.07s)  [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.77 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 370.91 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.48 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2205e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3384870633409023 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 497.58s (max_walltime = 502.07s)  [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     : 6.13 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 334.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.2667e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3104730573496945 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 498.72s (max_walltime = 502.07s)  [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.73 us    (1.4%)
   patch tree reduce : 1.84 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 403.74 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.30 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.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.0132e+04 | 82944 |      1 | 1.183e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2730862505271439 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 499.91s (max_walltime = 502.07s)  [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     : 6.02 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 339.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 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.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.3047e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.335243805440682 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 501.04s (max_walltime = 502.07s)  [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.99 us    (1.6%)
   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.17 us    (0.3%)
   LB compute        : 348.78 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.26 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.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.2086e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.327427286867827 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 502.19s > 502.07s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 16):
   -> walltime = 502.195031033 >= 502.06784053300004
--------------------------------
[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.79 us    (56.1%)
Info: dump to _to_trash/sod_128/dump/dump_0000016.sham                      [Shamrock Dump][rank=0]
              - took 5.31 ms, bandwidth = 2.75 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 502.195031033 -> 532.1950310330001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.15125356524682698)
   -> iter = None (current = 426)
   -> walltime = 532.1950310330001 (current = 502.204774766)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 532.20s)      [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     : 4.94 us    (1.3%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 353.47 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 9.18 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.2901e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3529078751851964 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.83s (niter = 6) global walltime = 503.34s (max_walltime = 532.20s)  [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.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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.1626e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2866272531127274 (tsim/hr)                            [sph::Model][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     : 6.44 us    (1.8%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 348.17 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.36 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.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.1807e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2980769006874435 (tsim/hr)                            [sph::Model][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     : 6.48 us    (1.8%)
   patch tree reduce : 1.69 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        : 347.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 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.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.3056e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.329556528949202 (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.89 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 377.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.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.2789e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3341742946059836 (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     : 6.61 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 324.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3117e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3503232394771891 (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     : 7.13 us    (1.7%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 404.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3004e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3560927204562911 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.57s (niter = 4) global walltime = 510.21s (max_walltime = 532.20s)  [SPH][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.46 us    (1.7%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 368.92 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
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.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.1393e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2917883949308977 (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.50 us    (1.4%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 433.60 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.37 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1727e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3065615548564826 (tsim/hr)                            [sph::Model][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     : 7.72 us    (2.1%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 337.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
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.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.2110e+04 | 82944 |      1 | 1.150e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3229024164422096 (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     : 7.18 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 362.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.1938e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3297069194099407 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 514.83s (max_walltime = 532.20s)  [SPH][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.00 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 334.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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.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.2709e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3517714395845757 (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.63 us    (1.7%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 359.22 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.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.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.3450e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3238234502137995 (tsim/hr)                            [sph::Model][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.32 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 372.99 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.43 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.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.3170e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3273495276889127 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 518.24s (max_walltime = 532.20s)  [SPH][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.04 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 357.37 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.02 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.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.3208e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3372134346920541 (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     : 7.01 us    (2.0%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 332.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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.1524e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3160150295688886 (tsim/hr)                            [sph::Model][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     : 6.71 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 379.48 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    (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.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    | 6.9639e+04 | 82944 |      1 | 1.191e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.291232959761663 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.30s (niter = 2) global walltime = 521.73s (max_walltime = 532.20s)  [SPH][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.21 us    (1.4%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.3%)
   LB compute        : 422.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.9826e+04 | 82944 |      1 | 1.188e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.259466571741733 (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.92 us    (1.7%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 384.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.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    | 7.0899e+04 | 82944 |      1 | 1.170e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2871031083559148 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 524.09s (max_walltime = 532.20s)  [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.42 us    (1.6%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 379.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
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.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.3612e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3455480480853397 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 525.21s (max_walltime = 532.20s)  [SPH][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     : 5.87 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 324.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 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.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.2882e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3419138681847698 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 526.35s (max_walltime = 532.20s)  [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     : 6.02 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 374.12 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2184e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3392913896489784 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 527.50s (max_walltime = 532.20s)  [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.95 us    (1.4%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 392.86 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
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.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.2322e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3472691483046402 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 528.65s (max_walltime = 532.20s)  [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     : 6.34 us    (1.6%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 379.01 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    (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.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.2004e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.302189753635628 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 529.80s (max_walltime = 532.20s)  [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     : 6.13 us    (1.5%)
   patch tree reduce : 2.52 us    (0.6%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 381.83 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.8331e+04 | 82944 |      1 | 1.214e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.244008307421637 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 531.02s (max_walltime = 532.20s)  [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.52 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 328.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 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.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.0323e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.289334348836975 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 532.20s > 532.20s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 17):
   -> walltime = 532.2003675130001 >= 532.1950310330001
--------------------------------
[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     : 6.39 us    (56.6%)
Info: dump to _to_trash/sod_128/dump/dump_0000017.sham                      [Shamrock Dump][rank=0]
              - took 5.19 ms, bandwidth = 2.82 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 532.2003675130001 -> 562.2003675130001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.16221976997743928)
   -> iter = None (current = 452)
   -> walltime = 562.2003675130001 (current = 532.210068236)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 562.20s)      [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.43 us    (1.6%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 322.84 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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    | 6.8058e+04 | 82944 |      1 | 1.219e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2571325779215854 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.10s (niter = 5) global walltime = 533.43s (max_walltime = 562.20s)  [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.85 us    (1.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 395.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.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.3344e+04 | 82944 |      1 | 1.131e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.363766915224089 (tsim/hr)                             [sph::Model][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     : 6.57 us    (1.7%)
   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.37 us    (0.4%)
   LB compute        : 368.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.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.0651e+04 | 82944 |      1 | 1.174e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7959566141689496 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 456                                                     [SPH][rank=0]
Info: time since start : 535.736970303 (s)                                            [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] Advancing callback "analysis_plots"
   -> t = 0.16333333333333333 -> 0.19055555555555553

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

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 562.20s)      [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.77 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 355.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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    | 7.3580e+04 | 82944 |      1 | 1.127e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3370454779347138 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.64s (niter = 5) global walltime = 537.94s (max_walltime = 562.20s)  [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     : 6.05 us    (1.6%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 352.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.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.3778e+04 | 82944 |      1 | 1.124e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3497501016171591 (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.19 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 : 1.49 us    (0.4%)
   LB compute        : 373.92 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.54 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.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.2669e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3391801543448774 (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     : 7.12 us    (1.7%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 398.21 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
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.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.3395e+04 | 82944 |      1 | 1.130e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3629870836119757 (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.00 us    (1.4%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 396.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
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.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.2825e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3575151360186175 (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     : 6.89 us    (1.6%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 407.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.0618e+04 | 82944 |      1 | 1.175e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2781442466693884 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.56s (niter = 4) global walltime = 543.65s (max_walltime = 562.20s)  [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     : 5.67 us    (1.4%)
   patch tree reduce : 1.65 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        : 375.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.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.1122e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2958808188938062 (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.95 us    (1.6%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 424.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.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.2664e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3333486388175817 (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.56 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 348.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.3304e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3551721217916306 (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     : 6.82 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 406.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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    | 6.7081e+04 | 82944 |      1 | 1.236e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2480878932267978 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.46s (niter = 3) global walltime = 548.33s (max_walltime = 562.20s)  [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.98 us    (1.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 371.44 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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.1949e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.303263874282048 (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.17 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 409.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3099e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3329232638165578 (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     : 6.21 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 336.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 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.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.2738e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3357053042526321 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.30s (niter = 2) global walltime = 551.76s (max_walltime = 562.20s)  [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     : 6.29 us    (1.7%)
   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.01 us    (0.3%)
   LB compute        : 351.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.2471e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3407586195894516 (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.49 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 359.19 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.45 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.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    | 7.3672e+04 | 82944 |      1 | 1.126e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.371882329952621 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 554.03s (max_walltime = 562.20s)  [SPH][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     : 5.95 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 360.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 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.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.3090e+04 | 82944 |      1 | 1.135e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3190366763616728 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 555.17s (max_walltime = 562.20s)  [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.12 us    (1.5%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 392.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.1834e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3047281677586997 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 556.32s (max_walltime = 562.20s)  [SPH][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.68 us    (1.7%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 380.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3202e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3386765645109302 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 557.46s (max_walltime = 562.20s)  [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     : 6.07 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 329.33 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.2887e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3425866889387332 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 558.60s (max_walltime = 562.20s)  [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     : 6.39 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 376.91 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.88 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.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.2696e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3493434715357935 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 559.74s (max_walltime = 562.20s)  [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     : 5.89 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 326.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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.2778e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3137565193675924 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 560.88s (max_walltime = 562.20s)  [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     : 6.60 us    (1.5%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 422.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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.1674e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3021427956709308 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 562.04s (max_walltime = 562.20s)  [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.43 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 375.45 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.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.2843e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3324010417440162 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 563.18s > 562.20s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 18):
   -> walltime = 563.178353675 >= 562.2003675130001
--------------------------------
[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.41 us    (58.6%)
Info: dump to _to_trash/sod_128/dump/dump_0000018.sham                      [Shamrock Dump][rank=0]
              - took 5.27 ms, bandwidth = 2.77 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 563.178353675 -> 593.178353675

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.17304909000524185)
   -> iter = None (current = 478)
   -> walltime = 593.178353675 (current = 563.1878915760001)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 593.18s)      [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     : 4.47 us    (1.0%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 414.06 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3255e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3496026353251471 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.80s (niter = 6) global walltime = 564.32s (max_walltime = 593.18s)  [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     : 5.97 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 352.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.2911e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3535228045929784 (tsim/hr)                            [sph::Model][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     : 6.72 us    (1.7%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 376.99 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 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.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.2624e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3543940571985598 (tsim/hr)                            [sph::Model][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     : 6.37 us    (1.6%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 376.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0695e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2796143862518918 (tsim/hr)                            [sph::Model][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     : 6.90 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 339.20 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 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.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.2781e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3260905236284326 (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.75 us    (1.7%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 378.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3260e+04 | 82944 |      1 | 1.132e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.344175820727722 (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.74 us    (1.8%)
   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.17 us    (0.3%)
   LB compute        : 361.45 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.3469e+04 | 82944 |      1 | 1.129e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3580095844854776 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.57s (niter = 4) global walltime = 571.18s (max_walltime = 593.18s)  [SPH][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     : 5.51 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 367.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0486e+04 | 82944 |      1 | 1.177e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3121351975788649 (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.7%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 383.28 us  (94.7%)
   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.1%)
Warning: High interface/patch volume ratio.                                  [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    | 6.9639e+04 | 82944 |      1 | 1.191e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2611574953804705 (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.55 us    (1.6%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 383.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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.2888e+04 | 82944 |      1 | 1.138e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3287110774996589 (tsim/hr)                            [sph::Model][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     : 6.40 us    (1.5%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 416.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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.0977e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3029149938705025 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.46s (niter = 3) global walltime = 575.86s (max_walltime = 593.18s)  [SPH][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     : 6.04 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 365.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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.0507e+04 | 82944 |      1 | 1.176e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3038747189281603 (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.61 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 432.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.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.0212e+04 | 82944 |      1 | 1.181e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3079340829041992 (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     : 7.02 us    (1.8%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 365.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.2724e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.312222654222278 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 579.36s (max_walltime = 593.18s)  [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.26 us    (1.4%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 431.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1345e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2955704970029043 (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.48 us    (1.7%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 366.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.2%)
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.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.2804e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3310192306677615 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.31s (niter = 2) global walltime = 581.66s (max_walltime = 593.18s)  [SPH][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.30 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 342.12 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1518e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3169033298292088 (tsim/hr)                            [sph::Model][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     : 6.92 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 340.28 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.21 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.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    | 7.1282e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3225230947452462 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 583.99s (max_walltime = 593.18s)  [SPH][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.60 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 343.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2852e+04 | 82944 |      1 | 1.139e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3146797067604994 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 585.13s (max_walltime = 593.18s)  [SPH][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     : 5.85 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 324.82 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 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.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.2552e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3175804257165626 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 586.27s (max_walltime = 593.18s)  [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.75 us    (1.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 379.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 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.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.2668e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3285994562008827 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 587.42s (max_walltime = 593.18s)  [SPH][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     : 5.82 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 345.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.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.0901e+04 | 82944 |      1 | 1.170e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3055678495073566 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 588.59s (max_walltime = 593.18s)  [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.78 us    (1.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 310.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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 = (-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.2742e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.34959474783907 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 589.73s (max_walltime = 593.18s)  [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.72 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 375.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2786e+04 | 82944 |      1 | 1.140e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3576953073416695 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 590.87s (max_walltime = 593.18s)  [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.87 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 371.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.2214e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.306678874735764 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 592.02s (max_walltime = 593.18s)  [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     : 6.06 us    (1.5%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 393.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.1715e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3061445307292214 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 593.18s (max_walltime = 593.18s)  [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.64 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 371.12 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0630e+04 | 82944 |      1 | 1.174e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2953168521157057 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 594.35s > 593.18s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 19):
   -> walltime = 594.3519819950001 >= 593.178353675
--------------------------------
[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.72 us    (56.2%)
Info: dump to _to_trash/sod_128/dump/dump_0000019.sham                      [Shamrock Dump][rank=0]
              - took 5.31 ms, bandwidth = 2.75 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 594.3519819950001 -> 624.3519819950001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.1844638358802685)
   -> iter = None (current = 505)
   -> walltime = 624.3519819950001 (current = 594.3614474240001)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 624.35s)      [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     : 4.73 us    (1.2%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 371.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.3193e+04 | 82944 |      1 | 1.133e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3521822964673726 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.81s (niter = 6) global walltime = 595.50s (max_walltime = 624.35s)  [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.74 us    (1.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 415.35 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.37 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.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.3163e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3621238696323528 (tsim/hr)                            [sph::Model][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     : 6.66 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 336.23 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 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.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.3115e+04 | 82944 |      1 | 1.134e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3234969741038047 (tsim/hr)                            [sph::Model][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     : 6.44 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 372.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.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.2997e+04 | 82944 |      1 | 1.136e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3299921855107333 (tsim/hr)                            [sph::Model][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.66 us    (1.7%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 372.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0467e+04 | 82944 |      1 | 1.177e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2927731209172657 (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.19 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 369.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2690e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3433402419437748 (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.90 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.85 us    (0.5%)
   LB compute        : 346.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1854e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3381769663916487 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.58s (niter = 4) global walltime = 602.38s (max_walltime = 624.35s)  [SPH][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     : 6.07 us    (1.4%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 416.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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.2631e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3100619652229235 (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.68 us    (1.6%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 391.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.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.2677e+04 | 82944 |      1 | 1.141e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3191834854742739 (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.48 us    (1.5%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 412.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.2557e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3258448967891234 (tsim/hr)                            [sph::Model][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     : 6.56 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 328.46 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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    | 7.2204e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3287826365716733 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.44s (niter = 3) global walltime = 606.96s (max_walltime = 624.35s)  [SPH][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.29 us    (1.5%)
   patch tree reduce : 1.81 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.3%)
   LB compute        : 398.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.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    | 6.7278e+04 | 82944 |      1 | 1.233e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2474407684285496 (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.32 us    (1.5%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 396.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2370e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3052715243339263 (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     : 6.43 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 430.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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.1237e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2929084641655806 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.46s (niter = 3) global walltime = 610.50s (max_walltime = 624.35s)  [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     : 6.00 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 375.80 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 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.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.2285e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5741444913416425 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 521                                                     [SPH][rank=0]
Info: time since start : 611.6529423080001 (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 = 624.3519819950001 (current = 612.719328541)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 624.35s)      [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.79 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 381.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0421e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2906805175013722 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.36s (niter = 2) global walltime = 613.90s (max_walltime = 624.35s)  [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.08 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 329.72 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.2618e+04 | 82944 |      1 | 1.142e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.340456411310267 (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     : 7.01 us    (2.0%)
   patch tree reduce : 1.67 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        : 321.69 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 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.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.2523e+04 | 82944 |      1 | 1.144e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.34898783173596 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 616.19s (max_walltime = 624.35s)  [SPH][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.84 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 331.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2424e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3051048592175505 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.15s (niter = 1) global walltime = 617.33s (max_walltime = 624.35s)  [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     : 6.04 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 326.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.0388e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.276339173744945 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 618.51s (max_walltime = 624.35s)  [SPH][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     : 5.89 us    (1.5%)
   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.10 us    (0.3%)
   LB compute        : 380.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1946e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3132552909002728 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 619.67s (max_walltime = 624.35s)  [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     : 6.51 us    (1.4%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 439.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (79.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.8832e+04 | 82944 |      1 | 1.205e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2652736427355964 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 620.87s (max_walltime = 624.35s)  [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     : 6.08 us    (1.4%)
   patch tree reduce : 1.94 us    (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.3%)
   LB compute        : 412.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.1023e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3152726021494607 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 622.04s (max_walltime = 624.35s)  [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     : 6.38 us    (1.4%)
   patch tree reduce : 2.36 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 424.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 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.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    | 7.2209e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3461993139549502 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 623.19s (max_walltime = 624.35s)  [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     : 6.13 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 327.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2221e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3100305808161543 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 624.34s (max_walltime = 624.35s)  [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     : 6.00 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 317.58 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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.2578e+04 | 82944 |      1 | 1.143e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3252395401590107 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 625.48s > 624.35s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 20):
   -> walltime = 625.484259711 >= 624.3519819950001
--------------------------------
[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     : 5.97 us    (55.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000020.sham                      [Shamrock Dump][rank=0]
              - took 5.43 ms, bandwidth = 2.69 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 625.484259711 -> 655.484259711

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.19520358144874744)
   -> iter = None (current = 531)
   -> walltime = 655.484259711 (current = 625.494012169)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 655.48s)      [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.78 us    (1.4%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 389.50 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.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.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    | 7.1537e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3154174207197598 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.96s (niter = 6) global walltime = 626.65s (max_walltime = 655.48s)  [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     : 6.54 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.83 us    (0.6%)
   LB compute        : 300.69 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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.2318e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3396908071235631 (tsim/hr)                            [sph::Model][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     : 6.65 us    (1.9%)
   patch tree reduce : 1.69 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        : 325.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.0588e+04 | 82944 |      1 | 1.175e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.316558209193164 (tsim/hr)                             [sph::Model][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     : 6.94 us    (1.8%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 362.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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 = (-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.1952e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3005821405955376 (tsim/hr)                            [sph::Model][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     : 7.37 us    (2.0%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 348.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 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.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.0512e+04 | 82944 |      1 | 1.176e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2827560943733642 (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.70 us    (1.5%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 412.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.9720e+04 | 82944 |      1 | 1.190e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2770138387554086 (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.06 us    (1.9%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 353.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2418e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.336026671480269 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.66s (niter = 4) global walltime = 633.65s (max_walltime = 655.48s)  [SPH][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.4%)
   patch tree reduce : 1.81 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        : 410.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.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.2410e+04 | 82944 |      1 | 1.145e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3460896643542586 (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     : 7.66 us    (2.0%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 370.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 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.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    | 6.9501e+04 | 82944 |      1 | 1.193e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.256181355580171 (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.75 us    (1.6%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 408.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1865e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3072367938355771 (tsim/hr)                            [sph::Model][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     : 9.27 us    (2.2%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 389.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 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.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.2174e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3217967881922654 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.49s (niter = 3) global walltime = 638.29s (max_walltime = 655.48s)  [SPH][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.26 us    (1.8%)
   patch tree reduce : 2.55 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 377.86 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 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.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.2327e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.334137852776442 (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     : 7.70 us    (2.1%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 343.01 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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    | 6.9244e+04 | 82944 |      1 | 1.198e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2870073007394331 (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.65 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.32 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.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.2191e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3481883750467525 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.33s (niter = 2) global walltime = 641.79s (max_walltime = 655.48s)  [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     : 6.55 us    (1.9%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 329.06 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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    | 7.0149e+04 | 82944 |      1 | 1.182e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2716121642230158 (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     : 6.85 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 342.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.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    | 7.1995e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3137200842215273 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.33s (niter = 2) global walltime = 644.13s (max_walltime = 655.48s)  [SPH][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.51 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 422.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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    | 6.8593e+04 | 82944 |      1 | 1.209e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2604175815927776 (tsim/hr)                            [sph::Model][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     : 6.55 us    (1.4%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 437.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0925e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3129333523648608 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 646.51s (max_walltime = 655.48s)  [SPH][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.38 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 338.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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.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.2300e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3479606693488217 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 647.66s (max_walltime = 655.48s)  [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.68 us    (1.5%)
   patch tree reduce : 1.89 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 424.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1978e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3050759928178277 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 648.81s (max_walltime = 655.48s)  [SPH][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.63 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 353.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.1808e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.310586540926236 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 649.97s (max_walltime = 655.48s)  [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     : 6.25 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 315.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
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.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.1498e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.314061603064197 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 651.13s (max_walltime = 655.48s)  [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.69 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 352.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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.5550e+04 | 82944 |      1 | 1.265e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.213664265562742 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 652.39s (max_walltime = 655.48s)  [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     : 8.14 us    (0.6%)
   patch tree reduce : 1.90 us    (0.1%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.1%)
   LB compute        : 1.29 ms    (98.1%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.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.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    | 6.7971e+04 | 82944 |      1 | 1.220e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2676857018137775 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 653.61s (max_walltime = 655.48s)  [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.57 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 370.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1901e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2992306714578112 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 654.77s (max_walltime = 655.48s)  [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     : 6.60 us    (1.7%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 369.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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    | 6.9456e+04 | 82944 |      1 | 1.194e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2630733474760714 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 655.96s > 655.48s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 21):
   -> walltime = 655.964641902 >= 655.484259711
--------------------------------
[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.31 us    (55.5%)
Info: dump to _to_trash/sod_128/dump/dump_0000021.sham                      [Shamrock Dump][rank=0]
              - took 5.65 ms, bandwidth = 2.58 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 655.964641902 -> 685.964641902

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.206206589884849)
   -> iter = None (current = 557)
   -> walltime = 685.964641902 (current = 655.9746324470001)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 685.96s)      [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     : 7.40 us    (0.8%)
   patch tree reduce : 2.25 us    (0.3%)
   gen split merge   : 911.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.2%)
   LB compute        : 871.24 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2018e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3185711908490634 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.92s (niter = 6) global walltime = 657.13s (max_walltime = 685.96s)  [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     : 6.83 us    (1.7%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.4%)
   LB compute        : 387.20 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.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.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.0704e+04 | 82944 |      1 | 1.173e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3038256575873328 (tsim/hr)                            [sph::Model][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     : 7.99 us    (2.0%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 380.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 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.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    | 7.1795e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3340124431353442 (tsim/hr)                            [sph::Model][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     : 7.93 us    (1.8%)
   patch tree reduce : 2.66 us    (0.6%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 426.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1805e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2972879263547132 (tsim/hr)                            [sph::Model][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     : 6.51 us    (1.7%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 370.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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    | 6.8730e+04 | 82944 |      1 | 1.207e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2496352144291247 (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     : 6.73 us    (1.5%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 419.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.1097e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3014189819855522 (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     : 9.41 us    (2.2%)
   patch tree reduce : 2.30 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.3%)
   LB compute        : 404.81 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (79.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1898e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3255333868186383 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.67s (niter = 4) global walltime = 664.14s (max_walltime = 685.96s)  [SPH][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     : 6.01 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 360.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 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.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.1980e+04 | 82944 |      1 | 1.152e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3371125750779775 (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.88 us    (1.7%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 375.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
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.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.0540e+04 | 82944 |      1 | 1.176e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3172304709018707 (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.57 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 326.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1273e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2915047352867404 (tsim/hr)                            [sph::Model][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     : 8.43 us    (2.2%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 353.42 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 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.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    | 6.8771e+04 | 82944 |      1 | 1.206e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2543732448430023 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.51s (niter = 3) global walltime = 668.85s (max_walltime = 685.96s)  [SPH][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     : 6.31 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 329.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.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    | 6.8765e+04 | 82944 |      1 | 1.206e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.263014060838891 (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.56 us    (1.7%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 410.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 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.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.0810e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3101729226584893 (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     : 9.23 us    (2.2%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 404.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 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.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.1501e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3330263512440783 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 672.39s (max_walltime = 685.96s)  [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     : 6.46 us    (1.7%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 368.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
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.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.0367e+04 | 82944 |      1 | 1.179e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.275316976698686 (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     : 7.09 us    (1.8%)
   patch tree reduce : 2.07 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        : 374.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1261e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2999903675365558 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 674.73s (max_walltime = 685.96s)  [SPH][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.44 us    (1.7%)
   patch tree reduce : 2.36 us    (0.6%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 362.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.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.1831e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3195236492269615 (tsim/hr)                            [sph::Model][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     : 7.02 us    (1.6%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 429.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.67 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.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.1214e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3178449384978796 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 677.05s (max_walltime = 685.96s)  [SPH][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     : 6.40 us    (1.4%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 426.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.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    | 6.9886e+04 | 82944 |      1 | 1.187e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3032579315157613 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 678.24s (max_walltime = 685.96s)  [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     : 6.03 us    (1.4%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 422.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 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.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.1378e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2892947253426248 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 679.41s (max_walltime = 685.96s)  [SPH][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.84 us    (1.6%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 396.67 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1605e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.301628972599016 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 680.56s (max_walltime = 685.96s)  [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     : 6.50 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 349.34 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 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.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.1341e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3055960237000719 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 681.73s (max_walltime = 685.96s)  [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.53 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 361.20 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.04 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0836e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3056503932918748 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 682.90s (max_walltime = 685.96s)  [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     : 5.78 us    (1.5%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 372.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
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.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.1132e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3210457277525671 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 684.07s (max_walltime = 685.96s)  [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     : 6.04 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 323.82 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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    | 7.1464e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2905621995760175 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 685.23s (max_walltime = 685.96s)  [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     : 37.85 us   (9.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 328.40 us  (86.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.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    | 6.9851e+04 | 82944 |      1 | 1.187e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.269426025739543 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 686.42s > 685.96s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 22):
   -> walltime = 686.4177658560001 >= 685.964641902
--------------------------------
[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.04 us    (56.8%)
Info: dump to _to_trash/sod_128/dump/dump_0000022.sham                      [Shamrock Dump][rank=0]
              - took 5.40 ms, bandwidth = 2.70 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 686.4177658560001 -> 716.4177658560001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.2171992262378581)
   -> iter = None (current = 583)
   -> walltime = 716.4177658560001 (current = 686.427561952)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 716.42s)      [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.79 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 328.48 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.66 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 = (-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    | 6.9875e+04 | 82944 |      1 | 1.187e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2784268610558691 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.13s (niter = 6) global walltime = 687.62s (max_walltime = 716.42s)  [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.96 us    (1.6%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 346.58 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.26 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.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.1284e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.48579860377950096 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 586                                                     [SPH][rank=0]
Info: time since start : 688.78048735 (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 = 716.4177658560001 (current = 689.848016154)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 716.42s)      [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     : 6.34 us    (1.6%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 383.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 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.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    | 7.1144e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3146780525549195 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.83s (niter = 5) global walltime = 691.02s (max_walltime = 716.42s)  [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     : 6.79 us    (1.6%)
   patch tree reduce : 2.54 us    (0.6%)
   gen split merge   : 1.32 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 402.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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.0411e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3109967388126393 (tsim/hr)                            [sph::Model][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     : 7.33 us    (1.7%)
   patch tree reduce : 1.91 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 417.33 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.0933e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2796416430752016 (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.02 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 327.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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    | 7.0410e+04 | 82944 |      1 | 1.178e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2782098157689281 (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     : 8.02 us    (2.2%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 336.96 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.1553e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3076284816590253 (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.97 us    (1.5%)
   patch tree reduce : 1.95 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 433.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (78.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 7.0824e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3034665757522486 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.69s (niter = 4) global walltime = 696.88s (max_walltime = 716.42s)  [SPH][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     : 6.11 us    (1.5%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 392.95 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.93 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1691e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3293117368791683 (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.54 us    (1.7%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 374.00 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1292e+04 | 82944 |      1 | 1.163e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2860562242884925 (tsim/hr)                            [sph::Model][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     : 8.60 us    (2.3%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 349.28 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1250e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2933488284960113 (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     : 7.79 us    (1.8%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 409.51 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 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.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    | 6.9374e+04 | 82944 |      1 | 1.196e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2676732514553515 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.51s (niter = 3) global walltime = 701.56s (max_walltime = 716.42s)  [SPH][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     : 6.62 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 361.61 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.0763e+04 | 82944 |      1 | 1.172e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3021796822411869 (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     : 8.92 us    (2.0%)
   patch tree reduce : 1.98 us    (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 385.45 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 35.05 us   (7.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (75.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 7.1028e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3168301748907287 (tsim/hr)                            [sph::Model][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     : 6.62 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 386.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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    | 7.2270e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3487372565573061 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 705.05s (max_walltime = 716.42s)  [SPH][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     : 5.89 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 354.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.2305e+04 | 82944 |      1 | 1.147e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3081825847784885 (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     : 7.22 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.92 us    (0.5%)
   LB compute        : 337.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2405e+04 | 82944 |      1 | 1.146e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3184651857623897 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 707.35s (max_walltime = 716.42s)  [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     : 6.36 us    (1.6%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 387.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0831e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2986479234605757 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 708.52s (max_walltime = 716.42s)  [SPH][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.09 us    (1.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 371.37 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2257e+04 | 82944 |      1 | 1.148e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3344211663745775 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 709.67s (max_walltime = 716.42s)  [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.27 us    (1.2%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 413.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 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.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.2171e+04 | 82944 |      1 | 1.149e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3430788486600664 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.16s (niter = 1) global walltime = 710.82s (max_walltime = 716.42s)  [SPH][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.84 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 332.68 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.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.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.1857e+04 | 82944 |      1 | 1.154e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2998104607550203 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 711.97s (max_walltime = 716.42s)  [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.10 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 333.23 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 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.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.1113e+04 | 82944 |      1 | 1.166e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.29464414438674 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 713.14s (max_walltime = 716.42s)  [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     : 6.16 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 406.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1397e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3087064008611586 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 714.30s (max_walltime = 716.42s)  [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.97 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.4%)
   LB compute        : 422.40 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.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.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.1756e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3248151075660208 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 715.46s (max_walltime = 716.42s)  [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     : 6.50 us    (1.5%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 417.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.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.1509e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3303633448318724 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 716.62s > 716.42s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 23):
   -> walltime = 716.6211359060001 >= 716.4177658560001
--------------------------------
[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     : 5.78 us    (55.9%)
Info: dump to _to_trash/sod_128/dump/dump_0000023.sham                      [Shamrock Dump][rank=0]
              - took 5.39 ms, bandwidth = 2.71 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 716.6211359060001 -> 746.6211359060001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.22750037112826324)
   -> iter = None (current = 608)
   -> walltime = 746.6211359060001 (current = 716.6310597)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 746.62s)      [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     : 3.83 us    (1.0%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 370.24 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (10.0%)
Warning: High interface/patch volume ratio.                                  [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.1630e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2914861353358131 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.95s (niter = 6) global walltime = 717.79s (max_walltime = 746.62s)  [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     : 6.21 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 325.86 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 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.1636e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.299653055718477 (tsim/hr)                             [sph::Model][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     : 7.00 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 329.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 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.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.1659e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3087007794142806 (tsim/hr)                            [sph::Model][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     : 39.16 us   (9.0%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 378.32 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1279e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3109284907167864 (tsim/hr)                            [sph::Model][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     : 8.21 us    (1.9%)
   patch tree reduce : 1.80 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        : 414.51 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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.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.1027e+04 | 82944 |      1 | 1.168e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3160189775070128 (tsim/hr)                            [sph::Model][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     : 7.16 us    (1.9%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 352.69 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0653e+04 | 82944 |      1 | 1.174e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3181448359927612 (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.52 us    (2.0%)
   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.16 us    (0.3%)
   LB compute        : 347.92 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 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.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.1088e+04 | 82944 |      1 | 1.167e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2898119538183612 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.66s (niter = 4) global walltime = 724.78s (max_walltime = 746.62s)  [SPH][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     : 6.34 us    (1.7%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 362.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1248e+04 | 82944 |      1 | 1.164e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3012964689364095 (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     : 8.52 us    (2.2%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 370.04 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 5.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 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.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    | 7.1909e+04 | 82944 |      1 | 1.153e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3226078324794868 (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     : 6.40 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 355.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 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.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    | 6.8399e+04 | 82944 |      1 | 1.213e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2674014834268588 (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     : 7.68 us    (1.8%)
   patch tree reduce : 2.50 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 396.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1553e+04 | 82944 |      1 | 1.159e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3351501823412475 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.50s (niter = 3) global walltime = 729.48s (max_walltime = 746.62s)  [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     : 7.02 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 314.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.9641e+04 | 82944 |      1 | 1.191e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2594867691189022 (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     : 7.19 us    (1.9%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 347.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.8354e+04 | 82944 |      1 | 1.213e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.244169736015933 (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.40 us    (1.8%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 392.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 5.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 7.1802e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3158565945748641 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 733.04s (max_walltime = 746.62s)  [SPH][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     : 38.30 us   (9.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 356.08 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
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.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    | 7.1825e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3257932251354367 (tsim/hr)                            [sph::Model][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     : 8.55 us    (2.1%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 391.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1223e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3247512328797297 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 735.36s (max_walltime = 746.62s)  [SPH][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     : 7.65 us    (1.8%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 398.73 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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.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    | 6.9611e+04 | 82944 |      1 | 1.192e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2586063007169013 (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     : 7.51 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 330.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 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.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.0229e+04 | 82944 |      1 | 1.181e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2779142628428182 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 737.74s (max_walltime = 746.62s)  [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     : 6.02 us    (1.7%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 336.40 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.8858e+04 | 82944 |      1 | 1.205e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2614912472451485 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 738.94s (max_walltime = 746.62s)  [SPH][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.06 us    (1.5%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 31.89 us   (8.0%)
   LB compute        : 347.51 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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    | 7.1783e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3245670523745243 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 740.10s (max_walltime = 746.62s)  [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.55 us    (1.6%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 322.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
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.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.0944e+04 | 82944 |      1 | 1.169e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3190553522440174 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.17s (niter = 1) global walltime = 741.27s (max_walltime = 746.62s)  [SPH][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     : 5.78 us    (1.3%)
   patch tree reduce : 1.94 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 412.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0742e+04 | 82944 |      1 | 1.172e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3217228648205621 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 742.44s (max_walltime = 746.62s)  [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     : 7.61 us    (1.8%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 393.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 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.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.1457e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.296119126479254 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 743.61s (max_walltime = 746.62s)  [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     : 7.18 us    (1.9%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.4%)
   LB compute        : 354.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.1462e+04 | 82944 |      1 | 1.161e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3047927579429088 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 744.77s (max_walltime = 746.62s)  [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     : 6.58 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 329.38 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 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.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.0072e+04 | 82944 |      1 | 1.184e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2883978370871638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 745.95s (max_walltime = 746.62s)  [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     : 7.06 us    (1.8%)
   patch tree reduce : 2.38 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 378.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 7.1609e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.326432545896541 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 747.11s > 746.62s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 24):
   -> walltime = 747.111563854 >= 746.6211359060001
--------------------------------
[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     : 6.12 us    (55.4%)
Info: dump to _to_trash/sod_128/dump/dump_0000024.sham                      [Shamrock Dump][rank=0]
              - took 7.58 ms, bandwidth = 1.93 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 747.111563854 -> 777.111563854

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.23849752378128863)
   -> iter = None (current = 634)
   -> walltime = 777.111563854 (current = 747.1235014370001)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 777.11s)      [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     : 4.24 us    (1.3%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 321.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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.1507e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3340556680368916 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.97s (niter = 6) global walltime = 748.28s (max_walltime = 777.11s)  [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     : 6.16 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 337.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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    | 6.9676e+04 | 82944 |      1 | 1.190e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2638327175099306 (tsim/hr)                            [sph::Model][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     : 6.71 us    (1.6%)
   patch tree reduce : 1.81 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 404.21 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2068e+04 | 82944 |      1 | 1.151e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3158672170148762 (tsim/hr)                            [sph::Model][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     : 7.27 us    (0.9%)
   patch tree reduce : 2.03 us    (0.2%)
   gen split merge   : 792.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.1%)
   LB compute        : 830.94 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 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.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.1201e+04 | 82944 |      1 | 1.165e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.309142151589696 (tsim/hr)                             [sph::Model][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     : 7.69 us    (1.9%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 391.29 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.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    | 7.0833e+04 | 82944 |      1 | 1.171e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3120209074397262 (tsim/hr)                            [sph::Model][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     : 8.35 us    (1.7%)
   patch tree reduce : 2.08 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 476.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.8225e+04 | 82944 |      1 | 1.216e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.272968152211467 (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     : 7.45 us    (1.9%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 373.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 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.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.1375e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.290527287567485 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.70s (niter = 4) global walltime = 755.35s (max_walltime = 777.11s)  [SPH][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.19 us    (1.4%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 408.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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.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.1630e+04 | 82944 |      1 | 1.158e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3034390305441736 (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.73 us    (1.9%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 385.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.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    | 7.1362e+04 | 82944 |      1 | 1.162e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3073924266611665 (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     : 8.91 us    (2.3%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 363.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0467e+04 | 82944 |      1 | 1.177e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3003246794788303 (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     : 7.44 us    (1.9%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 362.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
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.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.1807e+04 | 82944 |      1 | 1.155e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.335153604855027 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.51s (niter = 3) global walltime = 760.00s (max_walltime = 777.11s)  [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.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 345.38 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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.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.1745e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2968229454557723 (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     : 7.03 us    (1.6%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.2%)
   LB compute        : 427.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.8080e+04 | 82944 |      1 | 1.218e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2384411587788124 (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     : 7.59 us    (2.0%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 365.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 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.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    | 7.1495e+04 | 82944 |      1 | 1.160e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3093738003796844 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.35s (niter = 2) global walltime = 763.54s (max_walltime = 777.11s)  [SPH][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.46 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 377.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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 = (-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    | 7.1695e+04 | 82944 |      1 | 1.157e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.322483618944616 (tsim/hr)                             [sph::Model][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     : 6.81 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 355.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1734e+04 | 82944 |      1 | 1.156e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49733295053711285 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 2.34s (niter = 2) global walltime = 765.86s (max_walltime = 777.11s)  [SPH][rank=0]
Info: iteration since start : 651                                                     [SPH][rank=0]
Info: time since start : 765.855784749 (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 38.124 seconds)

Estimated memory usage: 528 MB

Gallery generated by Sphinx-Gallery