Testing Dusty TVA Sod tube with SPH#

CI test for Dusty TVA 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 )

Use shamrock documentation style for matplotlib

28 shamrock.matplotlib.set_shamrock_mpl_style()
32 gamma = 1.4
33
34 rho_g = 1
35 rho_d = 0.125
36
37 epsilons = [0.5]
38 ts = [1e-4]  # PL15 use K=1000 this correspond to ts=1e-4 in the rarefaction region
39 ndust = len(epsilons)
40
41 eps_all = np.sum(epsilons)
42 gas_fact = 1 - eps_all
43
44 fact = (rho_g / rho_d) ** (1.0 / 3.0)
45
46 P_g = 1
47 P_d = 0.1
48
49 u_g = P_g / ((gamma - 1) * rho_g)
50 u_d = P_d / ((gamma - 1) * rho_d)
51
52 resol = int(os.environ.get("RESOL", "128"))
53
54 sim_folder = f"_to_trash/dustysod_{resol}/"
55 dump_folder = sim_folder + "dump/"
56
57 shamrock.enable_experimental_features()
61 ctx = shamrock.Context()
62 ctx.pdata_layout_new()
63
64 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
65
66 l2_error_analysis = AnalysisHelper(
67     analysis_folder=sim_folder,
68     analysis_prefix="l2_error",
69 )
70
71 dust_mass_analysis = AnalysisHelper(
72     analysis_folder=sim_folder,
73     analysis_prefix="dust_mass",
74 )
 80 class Simulation(SimulationRunner):
 81     # Use the global vars defined at the top of the file
 82     t_end = 0.245
 83     dump_prefix = dump_folder + "dump_"
 84
 85     @callback(at_tsim=(0.245 * np.linspace(0.0, 1.0, 10)).tolist())  # Do the analysis every dt_stop
 86     def analysis_plots(self, ianalysis):
 87         dic = ctx.collect_data()
 88         pmass = model.get_particle_mass()
 89
 90         x = np.array(dic["xyz"][:, 0]) + 0.5
 91         vx = dic["vxyz"][:, 0]
 92         uint_tilde = dic["uint"][:]
 93         sj = dic["s_j"].reshape(-1, ndust)
 94
 95         hpart = dic["hpart"]
 96         alpha = dic["alpha_AV"]
 97
 98         rho = pmass * (model.get_hfact() / hpart) ** 3
 99
100         rho_d = sj**2
101         rho_g = rho - np.sum(rho_d, axis=1)
102
103         P = (gamma - 1) * rho * uint_tilde  # = rho_g * u
104
105         sod = shamrock.phys.SodTube(gamma=gamma, rho_1=1, P_1=1, rho_5=0.125, P_5=0.1)
106         sodanalysis = model.make_analysis_sodtube(
107             sod, (1, 0, 0), self.model.get_time(), 0.0, -0.5, 0.5
108         )
109         l2_rho, l2_v, l2_P = sodanalysis.compute_L2_dist()
110         l2_error_analysis.analysis_save(
111             ianalysis, {"l2_rho": l2_rho, "l2_v": l2_v, "l2_P": l2_P, "time": self.model.get_time()}
112         )
113
114         dmass_a = shamrock.model_sph.analysisDustMass(model=model)
115         dmass = dmass_a.get_dust_mass()
116         dust_mass_analysis.analysis_save(
117             ianalysis, {"dust_mass": dmass, "time": self.model.get_time()}
118         )
119
120         plt.figure(dpi=250)
121
122         plt.plot(x, rho, ".", label=r"$\rho_g + \rho_{\mathrm{d}}$", rasterized=True)
123         plt.plot(x, vx, ".", label=r"$v_x$", rasterized=True)
124         plt.plot(x, P, ".", label=r"$P$", rasterized=True)
125         plt.plot(x, alpha, ".", label=r"$\alpha$", rasterized=True)
126
127         for i in range(ndust):
128             plt.plot(
129                 x, rho_d[:, i], ".", label=r"$\rho_{\mathrm{d},{" + str(i) + r"}}$", rasterized=True
130             )
131
132         x = np.linspace(-0.5, 0.5, 1000)
133
134         rho = []
135         P = []
136         vx = []
137
138         for i in range(len(x)):
139             x_ = x[i]
140
141             _rho, _vx, _P = sod.get_value(self.model.get_time(), x_)
142             rho.append(_rho)
143             vx.append(_vx)
144             P.append(_P)
145
146         x += 0.5
147         plt.plot(x, rho, color="black", label="analytic")
148         plt.plot(x, vx, color="black")
149         plt.plot(x, P, color="black")
150
151         plt.legend(loc="center left")
152         plt.grid()
153         plt.ylim(0, 1.1)
154         plt.xlim(0, 1)
155         plt.xlabel(r"$x$")
156         plt.title(f"t={self.model.get_time():.3f}")
157         plt.savefig(dump_folder + f"sod_{ianalysis:04d}.png")
158         plt.savefig(dump_folder + f"sod_{ianalysis:04d}.pdf")
159         plt.close()
160
161     @callback(walltime_interval=30.0)  # Checkpoint the simulation every 30 seconds
162     def checkpoint(self, icheckpoint):
163         self.do_checkpoint(icheckpoint, purge_old_dumps=True, keep_first=1, keep_last=3)
164
165     @simulation_setup
166     def setup(self):
167
168         cfg = model.gen_default_config()
169         cfg.set_artif_viscosity_VaryingCD10(
170             alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
171         )
172         cfg.set_boundary_periodic()
173         cfg.set_eos_adiabatic(gamma)
174         cfg.set_dust_mode_monofluid_tva(nvar=1)
175         cfg.set_dust_drag_constant(ts)
176         cfg.set_show_cfl_detail(True)
177         cfg.print_status()
178         model.set_solver_config(cfg)
179
180         model.init_scheduler(int(1e8), 1)
181
182         (xs, ys, zs) = model.get_box_dim_fcc_3d(1, resol, 24, 24)
183         dr = 1 / xs
184         (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, resol, 24, 24)
185
186         model.resize_simulation_box((-xs, -ys / 2, -zs / 2), (xs, ys / 2, zs / 2))
187
188         V_g_min = (-xs, -ys / 2, -zs / 2)
189         V_g_max = (0, ys / 2, zs / 2)
190         V_d_min = (0, -ys / 2, -zs / 2)
191         V_d_max = (xs, ys / 2, zs / 2)
192
193         setup = model.get_setup()
194         gen1 = setup.make_generator_lattice_hcp(dr, V_g_min, V_g_max)
195         gen2 = setup.make_generator_lattice_hcp(dr * fact, V_d_min, V_d_max)
196         comb = setup.make_combiner_add(gen1, gen2)
197         # print(comb.get_dot())
198         setup.apply_setup(comb)
199
200         # model.add_cube_fcc_3d(dr, (-xs,-ys/2,-zs/2),(0,ys/2,zs/2))
201         # model.add_cube_fcc_3d(dr*fact, (0,-ys/2,-zs/2),(xs,ys/2,zs/2))
202
203         model.set_value_in_a_box("uint", "f64", u_g, V_g_min, V_g_max)
204         model.set_value_in_a_box("uint", "f64", u_d, V_d_min, V_d_max)
205
206         vol_b = xs * ys * zs
207
208         totmass = (rho_d * vol_b) + (rho_g * vol_b)
209
210         print("Total mass :", totmass)
211
212         pmass = model.total_mass_to_part_mass(totmass)
213         model.set_particle_mass(pmass)
214         print("Current part mass :", pmass)
215
216         model.set_cfl_cour(0.1)
217         model.set_cfl_force(0.1)
218
219         model.timestep()
220
221         def compute_sj_new_j(patchdata, j):
222             pmass = model.get_particle_mass()
223             hpart = patchdata["hpart"]
224             rho = pmass * (model.get_hfact() / np.array(hpart)) ** 3
225             s = np.sqrt(rho * epsilons[j])
226             return s
227
228         for k in range(ndust):
229
230             def compute_sj_new(patchdata):
231                 return compute_sj_new_j(patchdata, k)
232
233             self.model.overwrite_field_value_f64("s_j", compute_sj_new, k)
234
235
236 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": {
                "stopping_times": [
                    0.0001
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 2.220446049250313e-16,
                "dust_corrected_av": false,
                "ensure_s_j_positivity": true,
                "ndust": 1,
                "pure_diffusion_mode": false,
                "smooth_s_positivity_limiter": false,
                "type": "monofluid_tva"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "eos_type": "adiabatic",
            "gamma": 1.4
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": true,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------

---------------------------- WARNING ----------------------------
Warning: Experimental features are enabled
-----------------------------------------------------------------
Warning: Dust config != None is work in progress, use it at your own risk     [SPH::config][rank=0]
SPH setup: generating particles ...
SPH setup: Nstep = 82944 ( 8.3e+04 ) Ntotal = 82944 ( 8.3e+04 rank min = 7.9e+06 max = 8.3e+04) rate = 8.294400e+04 N.s^-1
SPH setup: the generation step took : 0.021222129000000003 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     : 25.93 us   (84.2%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.08 us    (0.1%)
   patch tree reduce : 1.61 us    (0.2%)
   gen split merge   : 1.07 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.1%)
   LB compute        : 893.89 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 5.13 us    (0.6%)
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.018823053000000003 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 |  10.6% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.057109845000000006 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.02 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 316.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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: 0.8548779899691358
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.00859375 unconverged cnt = 82944
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9294584297839507
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.009453125000000001 unconverged cnt = 82872
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9549213927469137
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010398437500000003 unconverged cnt = 82800
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.157998167438272
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.011438281250000005 unconverged cnt = 82800
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.200605227623457
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.012582109375000006 unconverged cnt = 82728
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.4560426311728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013840320312500008 unconverged cnt = 82512
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013920379857667285 unconverged cnt = 576
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (-4.13989222504511e-18,-2.8709421870543954e-17,-1.3123560990272466e-17)
    sum e = 0.0683628626342463
    sum de = -1.1926223897340549e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.88e-06 |
|       force |  6.93e-06 |
| dust1_fluid |  5.88e-06 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
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.0624e+04 | 82944 |      1 | 4.022e+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 = 14.253714482000001)

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 : 14.253954626 (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/dustysod_128/l2_error_0000000.npy
Saving data to _to_trash/dustysod_128/dust_mass_0000000.npy
--------------------------------
[Simulation] Triggering callback "checkpoint" (counter = 0):
   -> walltime = 14.254026763 >= 0.0
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000000.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.21 us   (71.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000000.sham                 [Shamrock Dump][rank=0]
              - took 8.98 ms, bandwidth = 2.00 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.0 -> 0.02722222222222222
[Simulation] Advancing callback "checkpoint"
   -> walltime = 14.254026763 -> 44.254026763

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 44.25s)       [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     : 6.13 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 319.07 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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 = (-3.026883480581841e-23,-1.6757528834525555e-22,-7.75422805254566e-23)
    sum a = (9.583083854271088e-18,-3.616266533820329e-17,5.026947356539217e-18)
    sum e = 0.06836286275039181
    sum de = -4.255493527005605e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.41e-04 |
|       force | 2.36e-04 |
| dust1_fluid | 2.00e-04 |
|  dust_drift | 1.63e-01 |
+-------------+----------+
Info: cfl dt = 0.00014124878011837651 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.6696e+04 | 82944 |      1 | 1.463e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.014475256411681672 (tsim/hr)                          [sph::Model][rank=0]
Info: next walltime check in 5.86s (niter = 4) global walltime = 18.12s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 5.882433273178804e-06, dt = 0.00014124878011837651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 308.11 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.258108548528658e-22,-5.3049423087936525e-21,6.818837476456427e-22)
    sum a = (4.331553902130532e-18,-2.9986367794125577e-17,1.1280658678090651e-17)
    sum e = 0.06836292959235427
    sum de = -9.839134715305953e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.018027611933260527
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.959994573011404e-22,-4.840308383211585e-21,1.1288508111974429e-21)
    sum a = (-4.427384740673243e-18,-2.907837059893339e-17,1.1878488575649937e-17)
    sum e = 0.06836286263430359
    sum de = -8.592302216947623e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.13e-04 |
|       force | 1.94e-04 |
| dust1_fluid | 1.65e-04 |
|  dust_drift | 1.35e-01 |
+-------------+----------+
Info: cfl dt = 0.00011288516222321667 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    | 3.9106e+04 | 82944 |      1 | 2.121e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.23974202740450967 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.00014713121339155532, dt = 0.00011288516222321667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 336.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.07622523754021e-22,-8.066790702005707e-21,2.520920915943353e-21)
    sum a = (1.5332934166833741e-18,-3.05454808427482e-17,1.4258267271053993e-17)
    sum e = 0.06836290530720437
    sum de = 3.7947076036992655e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.05e-04 |
|       force | 3.61e-04 |
| dust1_fluid | 3.06e-04 |
|  dust_drift | 2.50e-01 |
+-------------+----------+
Info: cfl dt = 0.00020480766057242523 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    | 6.1229e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.29999293583637227 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.000260016375614772, dt = 0.00020480766057242523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.27 us    (2.7%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 278.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2446778834160691e-21,-1.445548890047725e-20,5.586297318022387e-21)
    sum a = (1.801619764602965e-18,-2.908046689852651e-17,1.5456265694980077e-18)
    sum e = 0.06836300236756686
    sum de = 5.692061405548898e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013515516692222826
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1604515604781397e-21,-1.429186172101971e-20,4.267625683180005e-21)
    sum a = (-6.363167679236003e-18,-3.013161140879187e-17,1.5173334234263035e-18)
    sum e = 0.06836286262469003
    sum de = 3.469446951953614e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.29e-04 |
|       force | 2.37e-04 |
| dust1_fluid | 2.00e-04 |
|  dust_drift | 1.64e-01 |
+-------------+----------+
Info: cfl dt = 0.00012855686351785005 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    | 3.9646e+04 | 82944 |      1 | 2.092e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3524230051493724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0004648240361871972, dt = 0.00012855686351785005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 273.87 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.615088195861966e-23,-1.8316885618918056e-20,4.461623131666091e-21)
    sum a = (5.692351809437027e-18,-3.506120963770301e-17,1.2854973938503202e-17)
    sum e = 0.06836291753473597
    sum de = 8.402566836762659e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.07e-04 |
|       force | 3.90e-04 |
| dust1_fluid | 3.29e-04 |
|  dust_drift | 2.71e-01 |
+-------------+----------+
Info: cfl dt = 0.00020656624474920686 cfl multiplier : 0.56                    [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0757e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3390078695783396 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.36s (niter = 2) global walltime = 25.05s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.0005933808997050472, dt = 0.00020656624474920686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 276.23 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.652970679012345
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4973568522298576e-21,-2.5825018913312027e-20,7.871352444483108e-21)
    sum a = (6.305669176110376e-18,-2.336924839275139e-17,9.535305871084156e-18)
    sum e = 0.06836300288753176
    sum de = -1.599198204416119e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.51e-04 |
|       force | 4.94e-04 |
| dust1_fluid | 4.16e-04 |
|  dust_drift | 3.43e-01 |
+-------------+----------+
Info: cfl dt = 0.0002508671520147084 cfl multiplier : 0.7066666666666667       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.1281e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5494160382076655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0007999471444542541, dt = 0.0002508671520147084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.23 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 350.25 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6470925374528434e-21,-3.0597258974774294e-20,9.839005271770094e-21)
    sum a = (-8.8164371459294e-19,-3.554695220056637e-17,9.330132500489152e-18)
    sum e = 0.06836306636749084
    sum de = 6.7220534694101275e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011706543629158501
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.240748982804501e-22,-3.198933292333174e-20,9.905544302324584e-21)
    sum a = (2.4532694666933987e-18,-3.404929587696607e-17,8.595046631295446e-18)
    sum e = 0.06836286229547524
    sum de = 3.577867169202165e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.37e-04 |
|       force | 2.83e-04 |
| dust1_fluid | 2.37e-04 |
|  dust_drift | 1.97e-01 |
+-------------+----------+
Info: cfl dt = 0.00013665462330297035 cfl multiplier : 0.4022222222222222      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9890e+04 | 82944 |      1 | 2.079e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4343359066217342 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.38s (niter = 2) global walltime = 28.49s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.0010508142964689624, dt = 0.00013665462330297035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 274.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8449780192367293e-21,-3.651094118355163e-20,1.1014617757274758e-20)
    sum a = (2.6449311437788205e-18,-3.192185126131789e-17,1.1975634542612461e-17)
    sum e = 0.06836292280130413
    sum de = 9.64939933512099e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.00e-04 |
|       force | 4.24e-04 |
| dust1_fluid | 3.54e-04 |
|  dust_drift | 2.96e-01 |
+-------------+----------+
Info: cfl dt = 0.00019969660443144643 cfl multiplier : 0.6014814814814815      [sph::Model][rank=0]
Info: Timestep 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.1063e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3621780644012319 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0011874689197719328, dt = 0.00019969660443144643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.4%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 276.23 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.855693894491883e-21,-4.277176452193772e-20,1.359790393533009e-20)
    sum a = (3.1049191687838326e-18,-3.340183877406188e-17,1.5164313279453273e-17)
    sum e = 0.06836298884575896
    sum de = 6.207057437479513e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.36e-04 |
|       force | 5.21e-04 |
| dust1_fluid | 4.32e-04 |
|  dust_drift | 3.64e-01 |
+-------------+----------+
Info: cfl dt = 0.00023602757549255748 cfl multiplier : 0.734320987654321       [sph::Model][rank=0]
Info: Timestep 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.0978e+04 | 82944 |      1 | 1.360e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5285234712982949 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.23s (niter = 2) global walltime = 31.21s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.0013871655242033792, dt = 0.00023602757549255748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 315.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.871696065287322e-21,-5.075220862030654e-20,1.7547110815505635e-20)
    sum a = (-1.9166167708542177e-18,-2.6100127819848202e-17,5.380377186160926e-18)
    sum e = 0.06836303504374865
    sum de = 5.502326025363935e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.55e-04 |
|       force | 5.87e-04 |
| dust1_fluid | 4.84e-04 |
|  dust_drift | 4.12e-01 |
+-------------+----------+
Info: cfl dt = 0.0002550445663418844 cfl multiplier : 0.8228806584362139       [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6252621161070321 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0016231930996959366, dt = 0.0002550445663418844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 321.73 us  (85.3%)
   LB move op cnt    : 0
   LB apply          : 36.18 us   (9.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.117731343632108e-21,-5.675333412963402e-20,1.7755323301194147e-20)
    sum a = (4.714877256301376e-18,-4.755635309819072e-17,-1.6043929811096125e-17)
    sum e = 0.06836305829597358
    sum de = 8.673617379884035e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010252586707686362
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.556222524045912e-21,-5.94842556698923e-20,1.500634334048593e-20)
    sum a = (3.0665868333667484e-19,-4.7475196356799865e-17,-1.4755539831916024e-17)
    sum e = 0.06836286131077177
    sum de = 3.604972223514302e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.32e-04 |
|       force | 3.17e-04 |
| dust1_fluid | 2.59e-04 |
|  dust_drift | 2.24e-01 |
+-------------+----------+
Info: cfl dt = 0.00013175448229960348 cfl multiplier : 0.44096021947873804     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9523e+04 | 82944 |      1 | 2.099e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4375078138230093 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.64s (niter = 1) global walltime = 34.67s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.001878237666037821, dt = 0.00013175448229960348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 338.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.115530854911244e-20,-6.573806014803357e-20,1.307171634034461e-20)
    sum a = (-5.519856300060147e-18,-3.9166662655146834e-17,-1.4496440392173535e-17)
    sum e = 0.06836291403036793
    sum de = 1.4907779871675686e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 4.54e-04 |
| dust1_fluid | 3.69e-04 |
|  dust_drift | 3.20e-01 |
+-------------+----------+
Info: cfl dt = 0.0001840257722477323 cfl multiplier : 0.6273068129858254       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9809e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.34201877809907033 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.62s (niter = 1) global walltime = 36.06s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.0020099921483374248, dt = 0.0001840257722477323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.50 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 304.90 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.73810583503436e-22,-7.200648725168489e-20,1.0501314848944507e-20)
    sum a = (6.094841331316413e-18,-4.479762283364243e-17,-1.5255810801075966e-17)
    sum e = 0.06836296094567942
    sum de = 2.6020852139652106e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.15e-04 |
|       force | 5.47e-04 |
| dust1_fluid | 4.42e-04 |
|  dust_drift | 3.88e-01 |
+-------------+----------+
Info: cfl dt = 0.00021510662611282482 cfl multiplier : 0.7515378753238835      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8755e+04 | 82944 |      1 | 1.412e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4692881530434781 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.60s (niter = 1) global walltime = 37.47s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.002194017920585157, dt = 0.00021510662611282482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.38 us    (0.7%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 341.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5669383993010654e-21,-8.25920983109255e-20,7.063561715929832e-21)
    sum a = (-3.60323952920593e-18,-4.4028280882966735e-17,-1.7100033704149712e-17)
    sum e = 0.06836299324295898
    sum de = 7.616520261710669e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-04 |
|       force | 6.13e-04 |
| dust1_fluid | 4.90e-04 |
|  dust_drift | 4.37e-01 |
+-------------+----------+
Info: cfl dt = 0.00023236300649977438 cfl multiplier : 0.8343585835492556      [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5677654083416375 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 38.84s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.002409124546697982, dt = 0.00023236300649977438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.17 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 328.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3551079512680211e-20,-9.247582334568336e-20,3.080012606762109e-21)
    sum a = (3.4115778521205075e-18,-4.2907060072017013e-17,-1.4636422820925034e-17)
    sum e = 0.0683630098155956
    sum de = 7.806255641895632e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.41e-04 |
|       force | 6.60e-04 |
| dust1_fluid | 5.23e-04 |
|  dust_drift | 4.73e-01 |
+-------------+----------+
Info: cfl dt = 0.00024091600045195662 cfl multiplier : 0.889572389032837       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9166e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5967036198096652 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 40.24s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.0026414875531977564, dt = 0.00024091600045195662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 435.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.390484668027488e-21,-1.0291169871970098e-19,-2.998990165810923e-22)
    sum a = (-4.13989222504511e-18,-3.91430044168816e-17,-1.8633101792259793e-17)
    sum e = 0.0683630145592827
    sum de = 2.8731357570865868e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.44e-04 |
|       force | 6.95e-04 |
| dust1_fluid | 5.44e-04 |
|  dust_drift | 5.02e-01 |
+-------------+----------+
Info: cfl dt = 0.0002441435088315507 cfl multiplier : 0.9263815926885579       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9522e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6223832912760306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 41.64s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.002882403553649713, dt = 0.0002441435088315507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.10 us    (2.6%)
   patch tree reduce : 3.47 us    (1.0%)
   gen split merge   : 2.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.90 us    (0.5%)
   LB compute        : 317.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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 = (3.967995658409123e-21,-1.1194731147487554e-19,-5.432543353857999e-21)
    sum a = (-2.031613777105471e-18,-4.6176688494546135e-17,-1.3813602449497712e-17)
    sum e = 0.06836301173089651
    sum de = -1.0842021724855044e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.44e-04 |
|       force | 7.23e-04 |
| dust1_fluid | 5.58e-04 |
|  dust_drift | 5.25e-01 |
+-------------+----------+
Info: cfl dt = 0.0002442045466356583 cfl multiplier : 0.9509210617923719       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9109e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6263521130483998 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 43.04s (max_walltime = 44.25s)  [SPH][rank=0]
---------------- t = 0.0031265470624812636, dt = 0.0002442045466356583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.26 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 334.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.957423067328553e-21,-1.2384778901998048e-19,-8.0571129976899e-21)
    sum a = (8.394781456341473e-18,-3.7597432674009943e-17,-1.7422223840809506e-17)
    sum e = 0.0683630045895338
    sum de = 6.965998958219366e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.42e-04 |
|       force | 7.45e-04 |
| dust1_fluid | 5.68e-04 |
|  dust_drift | 5.46e-01 |
+-------------+----------+
Info: cfl dt = 0.0002424526092715135 cfl multiplier : 0.9672807078615812       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8271e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6176185507287031 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 44.46s > 44.25s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 1):
   -> walltime = 44.464753367 >= 44.254026763
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000001.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (52.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000001.sham                 [Shamrock Dump][rank=0]
              - took 7.47 ms, bandwidth = 2.40 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 44.464753367 -> 74.464753367

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.003370751609116922)
   -> iter = None (current = 18)
   -> walltime = 74.464753367 (current = 44.475374756)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 74.46s)       [SPH][rank=0]
---------------- t = 0.003370751609116922, dt = 0.0002424526092715135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.8%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 275.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1230176391723932e-20,-1.3237804383752745e-19,-1.2786206558122336e-20)
    sum a = (3.52657485837176e-18,-4.482727049931658e-17,-1.8370070632159566e-17)
    sum e = 0.068362995307855
    sum de = -2.7647155398380363e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.40e-04 |
|       force | 7.64e-04 |
| dust1_fluid | 5.74e-04 |
|  dust_drift | 5.64e-01 |
+-------------+----------+
Info: cfl dt = 0.00023972458037924718 cfl multiplier : 0.9781871385743873      [sph::Model][rank=0]
Info: Timestep 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.0771e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.639504843750085 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.83s (niter = 5) global walltime = 45.84s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.0036132042183884354, dt = 0.00023972458037924718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 323.01 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2460352783447863e-20,-1.4369010693210772e-19,-1.7158332961343075e-20)
    sum a = (-4.5998802500501224e-18,-4.448347736604461e-17,-1.3260226336354853e-17)
    sum e = 0.06836298522481402
    sum de = -9.730714498057402e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.37e-04 |
|       force | 7.81e-04 |
| dust1_fluid | 5.78e-04 |
|  dust_drift | 5.82e-01 |
+-------------+----------+
Info: cfl dt = 0.00023653145336062004 cfl multiplier : 0.9854580923829248      [sph::Model][rank=0]
Info: Timestep 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.0754e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6321325485480473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0038529287987676825, dt = 0.00023653145336062004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.44 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 320.24 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.946563907898815e-21,-1.5435526507412303e-19,-1.9720371836300853e-20)
    sum a = (3.9482305479596886e-18,-4.1541470622783387e-17,-1.4557323026843043e-17)
    sum e = 0.0683629751138799
    sum de = 1.734723475976807e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.33e-04 |
|       force | 7.97e-04 |
| dust1_fluid | 5.81e-04 |
|  dust_drift | 5.99e-01 |
+-------------+----------+
Info: cfl dt = 0.00023278198791885677 cfl multiplier : 0.9903053949219499      [sph::Model][rank=0]
Info: Timestep 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.0922e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6254347265497149 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.004089460252128302, dt = 0.00023278198791885677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.34 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 324.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.342334871466587e-21,-1.6356517952537746e-19,-2.3328117795594293e-20)
    sum a = (-1.839952100020049e-18,-3.7324314784163214e-17,-1.957093440510137e-17)
    sum e = 0.06836296503680817
    sum de = -1.0598076236045806e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.29e-04 |
|       force | 8.13e-04 |
| dust1_fluid | 5.83e-04 |
|  dust_drift | 6.16e-01 |
+-------------+----------+
Info: cfl dt = 0.00022904557549680027 cfl multiplier : 0.9935369299479667      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8836e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5944433570056527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.004322242240047159, dt = 0.00022904557549680027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 334.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.167938344739289e-20,-1.7178777430219282e-19,-2.8391169700125156e-20)
    sum a = (-2.798260485447158e-18,-4.625874365004833e-17,-1.9904322760129693e-17)
    sum e = 0.06836295562331077
    sum de = -3.0357660829594124e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.25e-04 |
|       force | 8.28e-04 |
| dust1_fluid | 5.84e-04 |
|  dust_drift | 6.34e-01 |
+-------------+----------+
Info: cfl dt = 0.00022542918412787007 cfl multiplier : 0.9956912866319779      [sph::Model][rank=0]
Info: Timestep 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.0692e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6033524742588406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.004551287815543959, dt = 0.00022542918412787007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.9%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 350.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-1.8345662945921847e-19,-3.311036503610572e-20)
    sum a = (-3.3732455167034233e-18,-3.972457781828768e-17,-1.6147414396855846e-17)
    sum e = 0.06836294695871956
    sum de = 9.107298248878237e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.22e-04 |
|       force | 8.43e-04 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 6.51e-01 |
+-------------+----------+
Info: cfl dt = 0.00022198978378478742 cfl multiplier : 0.9971275244213187      [sph::Model][rank=0]
Info: Timestep 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.0692e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.593828437996571 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.12s (niter = 3) global walltime = 52.72s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.004776716999671829, dt = 0.00022198978378478742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.19 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 305.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.405458236549786e-20,-1.9099956460232638e-19,-3.619922842623015e-20)
    sum a = (-9.966407208441933e-19,-4.5656207252711037e-17,-1.455436259495218e-17)
    sum e = 0.06836293905615576
    sum de = 9.107298248878237e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.19e-04 |
|       force | 8.59e-04 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 6.70e-01 |
+-------------+----------+
Info: cfl dt = 0.0002187545118844418 cfl multiplier : 0.9980850162808791       [sph::Model][rank=0]
Info: Timestep 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.0472e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5826462480643954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.004998706783456617, dt = 0.0002187545118844418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (2.2%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 311.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0032290909940047e-20,-2.014880814281802e-19,-3.9212043001719515e-20)
    sum a = (7.283143729246027e-19,-3.967546451353454e-17,-1.654340271300349e-17)
    sum e = 0.06836293189029923
    sum de = 1.0462550964485118e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.16e-04 |
|       force | 8.75e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 6.89e-01 |
+-------------+----------+
Info: cfl dt = 0.00021573263363773454 cfl multiplier : 0.9987233441872526      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9588e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5657567617601985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0052174612953410585, dt = 0.00021573263363773454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 324.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.144449389682701e-20,-2.0985924208017776e-19,-4.2874105373226914e-20)
    sum a = (4.408218572964701e-18,-3.563739255444106e-17,-1.8385305112599118e-17)
    sum e = 0.06836292541640378
    sum de = -5.095750210681871e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.13e-04 |
|       force | 8.92e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 7.09e-01 |
+-------------+----------+
Info: cfl dt = 0.0002129229738244739 cfl multiplier : 0.999148896124835        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7903e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.542165326382808 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 56.92s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.005433193928978793, dt = 0.0002129229738244739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 275.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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 = (-2.3059295524339808e-20,-2.1653183855292706e-19,-4.710854549677087e-20)
    sum a = (3.52657485837176e-18,-3.693649935943568e-17,-1.7760335922703877e-17)
    sum e = 0.06836291958229228
    sum de = -4.065758146820642e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.10e-04 |
|       force | 9.09e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 7.29e-01 |
+-------------+----------+
Info: cfl dt = 0.0002103185117949478 cfl multiplier : 0.9994325974165568       [sph::Model][rank=0]
Info: Timestep 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.0549e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5595641170698886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0056461169028032675, dt = 0.0002103185117949478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 280.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.743392130574644e-21,-2.2439062240705223e-19,-5.059651752060063e-20)
    sum a = (4.13989222504511e-18,-3.025978515534275e-17,4.906277054480054e-18)
    sum e = 0.06836291433363338
    sum de = -1.3552527156068805e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.08e-04 |
|       force | 9.27e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 7.51e-01 |
+-------------+----------+
Info: cfl dt = 0.00020790920030707257 cfl multiplier : 0.9996217316110378      [sph::Model][rank=0]
Info: Timestep 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.0743e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5544894853942817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.005856435414598215, dt = 0.00020790920030707257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.80 us    (2.5%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 285.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9497929988928196e-20,-2.3002442756356706e-19,-4.745139546178276e-20)
    sum a = (3.52657485837176e-18,-1.8446538005360508e-17,4.07258411831297e-18)
    sum e = 0.06836290961042257
    sum de = 2.6020852139652106e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.06e-04 |
|       force | 9.46e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 7.73e-01 |
+-------------+----------+
Info: cfl dt = 0.00020568367196161172 cfl multiplier : 0.9997478210740253      [sph::Model][rank=0]
Info: Timestep 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.0602e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5468670035152735 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.76s (niter = 2) global walltime = 61.02s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.0060643446149052874, dt = 0.00020568367196161172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 275.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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 = (1.6770396744974404e-20,-2.325980096533371e-19,-4.6604017514045986e-20)
    sum a = (-2.1849431187738084e-18,-2.9550038007385794e-17,6.254683982911864e-18)
    sum e = 0.0683629053800269
    sum de = -1.1980434005964824e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.04e-04 |
|       force | 9.65e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 7.97e-01 |
+-------------+----------+
Info: cfl dt = 0.00020350230334484985 cfl multiplier : 0.9998318807160169      [sph::Model][rank=0]
Info: Timestep 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.0648e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5414228295079757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0062700282868668996, dt = 0.00020350230334484985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 350.43 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (82.8%)
Warning: High interface/patch volume ratio.                                  [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.976511044943412e-20,-2.3992336012885535e-19,-4.516973702273435e-20)
    sum a = (6.51649702090434e-18,-2.5702729311266398e-17,6.641146580113932e-18)
    sum e = 0.06836290152803638
    sum de = -1.9895109865109006e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.01e-04 |
|       force | 9.85e-04 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 8.22e-01 |
+-------------+----------+
Info: cfl dt = 0.00020130788661925814 cfl multiplier : 0.9998879204773446      [sph::Model][rank=0]
Info: Timestep 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.0603e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5352835216445996 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 63.76s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.006473530590211749, dt = 0.00020130788661925814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.7%)
   patch tree reduce : 7.02 us    (1.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 349.58 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 29.83 us   (7.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6770396744974404e-20,-2.4449731738840125e-19,-4.389919769693042e-20)
    sum a = (-1.9932814416883866e-18,-3.6918081870153255e-17,-1.7337117010063002e-17)
    sum e = 0.06836289798546409
    sum de = 8.565197162635485e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.99e-04 |
|       force | 1.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 8.47e-01 |
+-------------+----------+
Info: cfl dt = 0.00019926190539503095 cfl multiplier : 0.9999252803182298      [sph::Model][rank=0]
Info: Timestep 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.0434e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5280317989273889 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 65.14s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.006674838476831008, dt = 0.00019926190539503095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 278.18 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0481497965609003e-20,-2.5313051548953902e-19,-4.988884949389399e-20)
    sum a = (5.6348533063114e-18,-3.69835163645957e-17,-1.9168496333736724e-17)
    sum e = 0.06836289481738247
    sum de = -3.2526065174565133e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.97e-04 |
|       force | 1.03e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 8.72e-01 |
+-------------+----------+
Info: cfl dt = 0.00019735398039099857 cfl multiplier : 0.9999501868788198      [sph::Model][rank=0]
Info: Timestep 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.0397e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.522343335657491 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 66.51s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.006874100382226038, dt = 0.00019735398039099857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 311.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1262467301663977e-20,-2.6059858279003545e-19,-5.346082914760911e-20)
    sum a = (1.1499700625125307e-19,-4.294988447799079e-17,-1.889076803787023e-17)
    sum e = 0.06836289198501419
    sum de = 7.589415207398531e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.96e-04 |
|       force | 1.05e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 8.94e-01 |
+-------------+----------+
Info: cfl dt = 0.00019557442578401623 cfl multiplier : 0.9999667912525464      [sph::Model][rank=0]
Info: Timestep 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.0612e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5191883680582542 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 67.88s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.007071454362617037, dt = 0.00019557442578401623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.16 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1027577751098096e-20,-2.6916393190880655e-19,-5.726660555571856e-20)
    sum a = (2.4149371312763144e-18,-3.839342757665533e-17,-1.3455919508078422e-17)
    sum e = 0.06836288944888796
    sum de = -1.0354130747236567e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.94e-04 |
|       force | 1.07e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 9.16e-01 |
+-------------+----------+
Info: cfl dt = 0.000193914329593607 cfl multiplier : 0.9999778608350308        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0175e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5107942886497521 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 69.26s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.007267028788401053, dt = 0.000193914329593607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 342.70 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2941850749056868e-21,-2.7601199988767657e-19,-5.96276236102929e-20)
    sum a = (-3.60323952920593e-18,-4.169554864287784e-17,-1.7977576085303953e-17)
    sum e = 0.0683628871885126
    sum de = -3.469446951953614e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.92e-04 |
|       force | 1.10e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 9.39e-01 |
+-------------+----------+
Info: cfl dt = 0.00019236563195587598 cfl multiplier : 0.9999852405566871      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8541e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4927040112988443 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 70.68s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.0074609431179946594, dt = 0.00019236563195587598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.39 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 345.70 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.06 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0182026595163032e-20,-2.8531666895223617e-19,-6.339303247256731e-20)
    sum a = (3.52657485837176e-18,-3.7823833030067096e-17,-1.7505476961999347e-17)
    sum e = 0.06836288517155223
    sum de = -4.065758146820642e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.91e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 9.62e-01 |
+-------------+----------+
Info: cfl dt = 0.000190920959847143 cfl multiplier : 0.9999901603711248        [sph::Model][rank=0]
Info: Timestep 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.0273e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5032302360271382 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 72.05s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.007653308749950535, dt = 0.000190920959847143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 263.44 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.283612483825118e-21,-2.9145115280621536e-19,-6.675688161703245e-20)
    sum a = (-3.2199161750350858e-18,-3.841439057258655e-17,-1.4964824957236048e-17)
    sum e = 0.06836288337759994
    sum de = 8.565197162635485e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.90e-04 |
|       force | 1.15e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 9.86e-01 |
+-------------+----------+
Info: cfl dt = 0.00018957357374933698 cfl multiplier : 0.9999934402474165      [sph::Model][rank=0]
Info: Timestep 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.0256e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4993130865030356 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 73.43s (max_walltime = 74.46s)  [SPH][rank=0]
---------------- t = 0.007844229709797678, dt = 0.00018957357374933698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 34.25 us   (9.5%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 309.00 us  (85.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8567224967650236e-20,-2.988069183427945e-19,-6.954713158779877e-20)
    sum a = (6.7464910334068465e-18,-3.9322163164250904e-17,-1.780359047606328e-17)
    sum e = 0.06836288177840091
    sum de = -1.599198204416119e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.88e-04 |
|       force | 1.18e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.01e+00 |
+-------------+----------+
Info: cfl dt = 0.00018831736596719602 cfl multiplier : 0.9999956268316111      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9867e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4925861377829976 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 74.82s > 74.46s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 2):
   -> walltime = 74.817949892 >= 74.464753367
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000002.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (52.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000002.sham                 [Shamrock Dump][rank=0]
              - took 7.15 ms, bandwidth = 2.51 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 74.817949892 -> 104.817949892

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.008033803283547015)
   -> iter = None (current = 40)
   -> walltime = 104.817949892 (current = 74.828324076)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 104.82s)      [SPH][rank=0]
---------------- t = 0.008033803283547015, dt = 0.00018831736596719602 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 340.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-20,-3.0674290965961276e-19,-7.288881698052194e-20)
    sum a = (2.2999401250250612e-18,-4.2940451129821743e-17,-1.4619703738761002e-17)
    sum e = 0.06836288035436971
    sum de = -1.3227266504323154e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.87e-04 |
|       force | 1.20e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.03e+00 |
+-------------+----------+
Info: cfl dt = 0.00018714678807256184 cfl multiplier : 0.9999970845544075      [sph::Model][rank=0]
Info: Timestep 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.0170e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4917997915872503 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.90s (niter = 5) global walltime = 76.21s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.008222120649514211, dt = 0.00018714678807256184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 264.65 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.684669742933174e-21,-3.1504856094932527e-19,-7.535946750227916e-20)
    sum a = (-1.1499700625125306e-18,-3.316398363808517e-17,-1.3498824702094931e-17)
    sum e = 0.06836287908707711
    sum de = -1.214306433183765e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.86e-04 |
|       force | 1.20e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00018605673879744996 cfl multiplier : 0.999998056369605       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9858e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4862113022449168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008409267437586772, dt = 0.00018605673879744996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.76 us    (2.2%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 321.22 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703317e-21,-3.1984244249654243e-19,-7.803355411881633e-20)
    sum a = (1.3799640750150368e-18,-3.7821493409985487e-17,-1.9897539051644177e-17)
    sum e = 0.06836287795731143
    sum de = -2.2442984970449942e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.85e-04 |
|       force | 1.21e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00018504260275266514 cfl multiplier : 0.9999987042464035      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9696e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4820640912820652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008595324176384223, dt = 0.00018504260275266514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.88 us    (2.3%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 320.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2877268929176775e-20,-3.277994903940951e-19,-8.232905088641596e-20)
    sum a = (-1.839952100020049e-18,-3.6944547652516417e-17,-1.3699528919682151e-17)
    sum e = 0.06836287695524602
    sum de = -6.2341624917916505e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.22e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00018410016099298547 cfl multiplier : 0.999999136164269       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9959e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4815544919854167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008780366779136888, dt = 0.00018410016099298547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.6%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 279.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.40868732754379e-20,-3.34355105862764e-19,-8.409450488500018e-20)
    sum a = (2.5299341375275673e-18,-2.5709167945730985e-17,9.880813535310752e-18)
    sum e = 0.06836287606423791
    sum de = 5.421010862427522e-20
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.83e-04 |
|       force | 1.20e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.14e+00 |
+-------------+----------+
Info: cfl dt = 0.00018322556292607928 cfl multiplier : 0.9999994241095127      [sph::Model][rank=0]
Info: Timestep 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.0248e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.481408372672684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.008964466940129874, dt = 0.00018322556292607928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.08 us    (2.0%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 371.78 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.773339267619241e-20,-3.376820456188122e-19,-8.043484596539337e-20)
    sum a = (4.369886237547617e-18,-3.605077534742042e-17,-2.1017767945339584e-17)
    sum e = 0.06836287527291919
    sum de = -1.452830911130576e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.85e-04 |
|       force | 1.19e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.17e+00 |
+-------------+----------+
Info: cfl dt = 0.0001846864145431348 cfl multiplier : 0.9999996160730085       [sph::Model][rank=0]
Info: Timestep 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.0070e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4777061878859192 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 83.13s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.009147692503055953, dt = 0.0001846864145431348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 307.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.144449389682701e-20,-3.452951693643684e-19,-8.690815074060549e-20)
    sum a = (2.9132574916984108e-18,-3.8529649616286946e-17,-1.4178359268504532e-17)
    sum e = 0.06836287542410581
    sum de = 1.0354130747236567e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.18e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.20e+00 |
+-------------+----------+
Info: cfl dt = 0.00018391562106758434 cfl multiplier : 0.9999997440486723      [sph::Model][rank=0]
Info: Timestep 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.0019e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4811046169003019 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.009332378917599088, dt = 0.00018391562106758434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.20 us    (2.1%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 315.14 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1379912076946917e-20,-3.529480666513119e-19,-8.877916233556341e-20)
    sum a = (-6.133173666733497e-19,-3.275857427034393e-17,-1.450600003674393e-17)
    sum e = 0.06836287477282028
    sum de = -8.782037597132586e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.83e-04 |
|       force | 1.17e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.23e+00 |
+-------------+----------+
Info: cfl dt = 0.0001832104563033339 cfl multiplier : 0.9999998293657816       [sph::Model][rank=0]
Info: Timestep 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.0334e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.481612990126985 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.009516294538666672, dt = 0.0001832104563033339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.52 us    (0.7%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 312.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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 = (2.0364053190326064e-20,-3.5809055159068883e-19,-9.183057157678113e-20)
    sum a = (5.9798443250651594e-18,-4.022933681317436e-17,-1.1307977267272654e-17)
    sum e = 0.06836287420363933
    sum de = 9.161508357502512e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.83e-04 |
|       force | 1.17e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.25e+00 |
+-------------+----------+
Info: cfl dt = 0.0001825674617352746 cfl multiplier : 0.9999998862438545       [sph::Model][rank=0]
Info: Timestep 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.0265e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47921733846031694 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 87.27s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.009699504994970005, dt = 0.0001825674617352746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.17 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 315.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.288898779365402e-21,-3.6639620288040134e-19,-9.351665948316507e-20)
    sum a = (2.7599281500300737e-18,-3.895493639624153e-17,-1.576658807020933e-17)
    sum e = 0.06836287370250359
    sum de = -1.2739375526704677e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.82e-04 |
|       force | 1.16e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.27e+00 |
+-------------+----------+
Info: cfl dt = 0.0001819840942291998 cfl multiplier : 0.9999999241625698       [sph::Model][rank=0]
Info: Timestep 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.0038e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.475740111824388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.00988207245670528, dt = 0.0001819840942291998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (2.3%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.10 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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 = (-6.738105835034359e-20,-3.7365838361371613e-19,-9.679930331846173e-20)
    sum a = (-2.2999401250250614e-19,-3.661052477270524e-17,-1.3160285018213135e-17)
    sum e = 0.06836287326247857
    sum de = -1.6263032587282567e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.81e-04 |
|       force | 1.15e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.0001814580337830143 cfl multiplier : 0.9999999494417132       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8146e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.45927561476463996 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.01006405655093448, dt = 0.0001814580337830143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.19 us    (2.2%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 342.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.911330475313933e-20,-3.7994962201316316e-19,-9.882388892774216e-20)
    sum a = (2.069946112522555e-18,-3.3501637608263e-17,-2.177296195908951e-17)
    sum e = 0.06836287287497045
    sum de = -1.3823577699190182e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.81e-04 |
|       force | 1.15e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.30e+00 |
+-------------+----------+
Info: cfl dt = 0.000180987164777285 cfl multiplier : 0.9999999662944754        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9980e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4723899934269537 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 91.46s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.010245514584717494, dt = 0.000180987164777285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.6%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 359.94 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.749850312562653e-20,-3.8536584250208835e-19,-1.0367189176844913e-19)
    sum a = (1.5332934166833742e-19,-2.2708090474649295e-17,7.338326330731166e-18)
    sum e = 0.06836287253395656
    sum de = -2.0328790734103208e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.81e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.31e+00 |
+-------------+----------+
Info: cfl dt = 0.00018110366919994953 cfl multiplier : 0.9999999775296503      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8583e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.46018906343762356 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.010426501749494778, dt = 0.00018110366919994953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.17 us    (1.9%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 355.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-21,-3.885991974548722e-19,-9.969162450318226e-20)
    sum a = (-7.66646708341687e-18,-2.4454682374932812e-17,-1.7558069464384815e-18)
    sum e = 0.0683628724237648
    sum de = -1.9136168344369153e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.30e+00 |
+-------------+----------+
Info: cfl dt = 0.00018365500427952169 cfl multiplier : 0.999999985019767       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9500e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4676903494745462 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 94.28s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.010607605418694727, dt = 0.00018365500427952169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 332.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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 = (-2.0962995931218006e-20,-3.9309828687180657e-19,-1.009014326220534e-19)
    sum a = (3.3732455167034233e-18,-2.3911890515999488e-17,5.2748378240931984e-18)
    sum e = 0.06836287319956351
    sum de = -3.220080452281948e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.29e+00 |
+-------------+----------+
Info: cfl dt = 0.00018354090806355978 cfl multiplier : 0.999999990013178       [sph::Model][rank=0]
Info: Timestep 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.0101e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4790770692740254 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 95.66s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.01079126042297425, dt = 0.00018354090806355978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 276.77 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6952423340137436e-20,-3.9758801780841456e-19,-9.933661411056545e-20)
    sum a = (1.5332934166833741e-18,-2.2865986754716934e-17,-3.872706959857598e-18)
    sum e = 0.0683628730322649
    sum de = -4.9873299934333204e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.83e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.29e+00 |
+-------------+----------+
Info: cfl dt = 0.00018347113691297268 cfl multiplier : 0.9999999933421186      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9807e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4764313052441301 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 97.05s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.01097480133103781, dt = 0.00018347113691297268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.35 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 307.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.71 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156193867210995e-20,-4.017197868725363e-19,-1.008509693588295e-19)
    sum a = (-5.596520970894316e-18,-2.5442788161719294e-17,4.279597455538138e-18)
    sum e = 0.06836287289328552
    sum de = -2.47198095326695e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.83e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.00018344371243786888 cfl multiplier : 0.9999999955614124      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9912e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47708710775455615 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 98.43s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.011158272467950783, dt = 0.00018344371243786888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 319.99 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (81.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.57016749029507e-20,-4.0671487574677185e-19,-9.944908231892779e-20)
    sum a = (2.606598808361736e-18,-2.3430789759378034e-17,-5.637747830305191e-18)
    sum e = 0.06836287278318347
    sum de = 6.993104012531504e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.83e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.00018345742552884845 cfl multiplier : 0.9999999970409416      [sph::Model][rank=0]
Info: Timestep 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.0022e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4778942287855356 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 99.82s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.011341716180388652, dt = 0.00018345742552884845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.16 us    (0.5%)
   gen split merge   : 1.31 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 386.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.906044179773648e-20,-4.1055887154085567e-19,-1.0125171037374726e-19)
    sum a = (1.3799640750150368e-18,-2.20580129972537e-17,1.2703164588028895e-18)
    sum e = 0.06836287269491761
    sum de = -1.940721888749053e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.00018351115598435992 cfl multiplier : 0.9999999980272944      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9975e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4775543361429944 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 101.20s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.0115251736059175, dt = 0.00018351115598435992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.13 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 358.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.072810638065213e-20,-4.146976594652223e-19,-1.0046557581785127e-19)
    sum a = (-1.9166167708542177e-18,-2.1571372020278998e-17,-3.377497768124396e-19)
    sum e = 0.06836287262654815
    sum de = 4.0115480381963664e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.0001836038839332964 cfl multiplier : 0.999999998684863        [sph::Model][rank=0]
Info: Timestep 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.0393e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4810200464630824 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 102.57s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.01170868476190186, dt = 0.0001836038839332964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 281.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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 = (3.174396526727298e-20,-4.18560372219959e-19,-1.0052545516174214e-19)
    sum a = (-4.829874262552629e-18,-2.3246315395183315e-17,2.232000626317926e-18)
    sum e = 0.06836287257607204
    sum de = 3.903127820947816e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.0001837346799593398 cfl multiplier : 0.9999999991232421       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9866e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47706819060485844 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 103.96s (max_walltime = 104.82s)  [SPH][rank=0]
---------------- t = 0.011892288645835155, dt = 0.0001837346799593398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 297.85 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.755136608102938e-20,-4.228091222881612e-19,-9.993657016560203e-20)
    sum a = (2.9132574916984108e-18,-1.892703981924107e-17,-1.7078381538528863e-19)
    sum e = 0.06836287254177645
    sum de = 1.2685165418080402e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.28e+00 |
+-------------+----------+
Info: cfl dt = 0.0001839026981245909 cfl multiplier : 0.9999999994154948       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9609e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4753582936777065 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 105.35s > 104.82s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 3):
   -> walltime = 105.35292390400001 >= 104.817949892
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000003.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (54.2%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000003.sham                 [Shamrock Dump][rank=0]
              - took 6.63 ms, bandwidth = 2.70 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 105.35292390400001 -> 135.35292390400002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.012076023325794496)
   -> iter = None (current = 62)
   -> walltime = 135.35292390400002 (current = 105.36353971800001)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 135.35s)      [SPH][rank=0]
---------------- t = 0.012076023325794496, dt = 0.0001839026981245909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 300.21 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (76.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4321762826003785e-20,-4.2608225078233242e-19,-1.0010812813533665e-19)
    sum a = (-7.513137741748534e-18,-2.925999998510887e-17,3.762186264357086e-18)
    sum e = 0.06836287252231904
    sum de = 7.15573433840433e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.13e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.29e+00 |
+-------------+----------+
Info: cfl dt = 0.00018410717052216787 cfl multiplier : 0.9999999996103298      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9791e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47724259895834464 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 6.95s (niter = 5) global walltime = 106.75s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.012259926023919086, dt = 0.00018410717052216787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 330.36 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.025832727952037e-20,-4.3247877208545183e-19,-9.916430446844969e-20)
    sum a = (-4.063227554210942e-18,-1.7966784869906062e-17,-7.587358361910829e-18)
    sum e = 0.06836287251685726
    sum de = 1.5287250632045613e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.84e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.29e+00 |
+-------------+----------+
Info: cfl dt = 0.0001843474014808025 cfl multiplier : 0.9999999997402199       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9788e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47775568684038056 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.012444033194441255, dt = 0.0001843474014808025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.86 us    (2.1%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.55 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 348.60 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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 = (-2.156193867210995e-20,-4.347435243244495e-19,-1.0148331632983425e-19)
    sum a = (-7.589802412582703e-18,-2.781789560072629e-17,3.751787224657965e-18)
    sum e = 0.06836287252431578
    sum de = -1.4094628242311558e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.85e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.30e+00 |
+-------------+----------+
Info: cfl dt = 0.00018462276295814605 cfl multiplier : 0.9999999998268132      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9972e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4798458315234393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012628380595922058, dt = 0.00018462276295814605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.3%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 299.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.410955928460184e-19,-9.970677065859694e-20)
    sum a = (-7.896461095919377e-18,-1.9130979822514775e-17,-5.709226173967344e-18)
    sum e = 0.06836287254399966
    sum de = -5.421010862427522e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.85e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.30e+00 |
+-------------+----------+
Info: cfl dt = 0.00018493269076441803 cfl multiplier : 0.9999999998845421      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9847e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4795617720514673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012813003358880203, dt = 0.00018493269076441803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 320.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.390484668027488e-21,-4.435662316521977e-19,-1.0172911459124343e-19)
    sum a = (-6.976485045909353e-18,-2.2590323358221415e-17,5.966391528200803e-20)
    sum e = 0.06836287257504504
    sum de = 2.2985086056692694e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.85e-04 |
|       force | 1.14e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.31e+00 |
+-------------+----------+
Info: cfl dt = 0.00018527668022439453 cfl multiplier : 0.9999999999230281      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9786e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4798750274917859 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012997936049644622, dt = 0.00018527668022439453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.19 us    (2.3%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 330.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.78625563159526e-21,-4.481121134707642e-19,-1.0128980865856006e-19)
    sum a = (-6.669826362572678e-18,-1.65404027324719e-17,-1.1660750518818941e-18)
    sum e = 0.0683628726175871
    sum de = -1.0516761073109393e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.90e-04 |
|       force | 1.15e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.32e+00 |
+-------------+----------+
Info: cfl dt = 0.0001900536574284919 cfl multiplier : 0.9999999999486855       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7990e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.46632705504934585 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 4.19s (niter = 3) global walltime = 113.74s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.013183212729869016, dt = 0.0001900536574284919 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.48 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 352.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 5.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.15090757167071e-20,-4.507044125211871e-19,-1.016655872747424e-19)
    sum a = (1.0733053916783619e-18,-2.8714063676785866e-17,1.990092355471433e-18)
    sum e = 0.06836287423550895
    sum de = -1.8648277366750676e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.91e-04 |
|       force | 1.15e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.33e+00 |
+-------------+----------+
Info: cfl dt = 0.00019072351235482622 cfl multiplier : 0.9999999999657904      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9696e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4924235233099307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.013373266387297508, dt = 0.00019072351235482622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.91 us    (2.0%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 379.41 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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 = (3.5936564453516584e-21,-4.571898393874077e-19,-1.0096047647448356e-19)
    sum a = (-5.596520970894316e-18,-2.2206101589939233e-17,-4.1225749202038904e-18)
    sum e = 0.06836287439421065
    sum de = -8.348356728138384e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.91e-04 |
|       force | 1.16e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.34e+00 |
+-------------+----------+
Info: cfl dt = 0.00019143998519954085 cfl multiplier : 0.9999999999771937      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6333e+04 | 82944 |      1 | 1.472e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.46632130825256135 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.013563989899652334, dt = 0.00019143998519954085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.90 us    (2.0%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.31 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 378.03 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156193867210995e-20,-4.6104319366181795e-19,-1.0206901435623632e-19)
    sum a = (-5.3665269583918095e-18,-2.4382659510340555e-17,4.613882167502289e-18)
    sum e = 0.06836287457007924
    sum de = 1.0842021724855044e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.92e-04 |
|       force | 1.16e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.36e+00 |
+-------------+----------+
Info: cfl dt = 0.0001922025429878994 cfl multiplier : 0.9999999999847958       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9752e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49648275894382443 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 4.21s (niter = 3) global walltime = 117.99s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.013755429884851875, dt = 0.0001922025429878994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.09 us    (2.7%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 316.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.994713704459715e-21,-4.659926599444621e-19,-1.0043388241946583e-19)
    sum a = (-6.209838337567665e-18,-2.0100218912963163e-17,-4.398492856175231e-20)
    sum e = 0.06836287476210716
    sum de = 1.7997756063259374e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.93e-04 |
|       force | 1.17e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.37e+00 |
+-------------+----------+
Info: cfl dt = 0.00019301159511892017 cfl multiplier : 0.9999999999898638      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9844e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49922411709557835 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.013947632427839775, dt = 0.00019301159511892017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.88 us    (2.2%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 373.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.755136608102938e-20,-4.693675619121834e-19,-1.0100968044700952e-19)
    sum a = (-3.986562883376773e-18,-3.024361370133866e-17,7.136754853919042e-18)
    sum e = 0.06836287497122777
    sum de = 4.445228907190568e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.94e-04 |
|       force | 1.18e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.38e+00 |
+-------------+----------+
Info: cfl dt = 0.00019386762247052596 cfl multiplier : 0.9999999999932424      [sph::Model][rank=0]
Info: Timestep 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.0016e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5027652289065612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.014140644022958695, dt = 0.00019386762247052596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.23 us    (2.3%)
   patch tree reduce : 2.63 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 328.49 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.390484668027488e-21,-4.757909888462413e-19,-9.879834501201251e-20)
    sum a = (2.2232754541908927e-18,-1.9179643920212247e-17,-4.377428597386177e-18)
    sum e = 0.06836287519767241
    sum de = 1.431146867680866e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.95e-04 |
|       force | 1.18e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.40e+00 |
+-------------+----------+
Info: cfl dt = 0.0001947711818166575 cfl multiplier : 0.9999999999954948       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7939e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4875181801318638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.81s (niter = 2) global walltime = 122.20s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.01433451164542922, dt = 0.0001947711818166575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 318.49 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2941850749056866e-20,-4.788558911531493e-19,-1.0081594223139461e-19)
    sum a = (3.2965808458692543e-18,-2.9287401615504677e-17,6.228272146283738e-18)
    sum e = 0.06836287544198645
    sum de = 3.7947076036992655e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.96e-04 |
|       force | 1.19e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.41e+00 |
+-------------+----------+
Info: cfl dt = 0.0001957229084420773 cfl multiplier : 0.9999999999969965       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8870e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49766322985823436 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 0.014529282827245877, dt = 0.0001957229084420773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.74 us    (1.6%)
   patch tree reduce : 2.74 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 453.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
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.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6118591048679616e-20,-4.852196577751261e-19,-9.857832652199044e-20)
    sum a = (-4.13989222504511e-18,-2.1355003955131785e-17,-5.452018620495051e-18)
    sum e = 0.0683628757044408
    sum de = -2.927345865710862e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.97e-04 |
|       force | 1.19e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.43e+00 |
+-------------+----------+
Info: cfl dt = 0.000196723512279302 cfl multiplier : 0.9999999999979977        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9698e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5071270602592403 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 125.00s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.014725005735687954, dt = 0.000196723512279302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 324.07 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6770396744974404e-20,-4.88919766934191e-19,-1.0074786528266661e-19)
    sum a = (-2.4532694666933987e-18,-2.7221348630797918e-17,9.599136243112353e-19)
    sum e = 0.0683628759856675
    sum de = -1.452830911130576e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.98e-04 |
|       force | 1.20e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.44e+00 |
+-------------+----------+
Info: cfl dt = 0.0001977737811345722 cfl multiplier : 0.9999999999986651       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8249e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4973524088001887 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 126.43s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.014921729247967256, dt = 0.0001977737811345722 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 268.45 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.325304098398009e-20,-4.94678741765072e-19,-9.998437103762015e-20)
    sum a = (1.6099580875175429e-18,-2.5244837585854508e-17,-4.401823341186615e-19)
    sum e = 0.06836287628616361
    sum de = -1.1817803680091998e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 1.99e-04 |
|       force | 1.21e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.46e+00 |
+-------------+----------+
Info: cfl dt = 0.00019887458103295787 cfl multiplier : 0.99999999999911        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8815e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5048678527388111 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 127.84s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.015119503029101828, dt = 0.00019887458103295787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 278.54 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.156193867210995e-20,-4.995767364059208e-19,-1.0024663307325971e-19)
    sum a = (1.5332934166833741e-18,-2.1837602068605465e-17,8.471932447927394e-18)
    sum e = 0.06836287660639596
    sum de = 1.951563910473908e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.00e-04 |
|       force | 1.22e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.48e+00 |
+-------------+----------+
Info: cfl dt = 0.0002000268576581716 cfl multiplier : 0.9999999999994067       [sph::Model][rank=0]
Info: Timestep 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.0325e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5207089697047329 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 129.21s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.015318377610134786, dt = 0.0002000268576581716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 277.54 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.804458291111562e-20,-5.034183925799229e-19,-9.75973169207494e-20)
    sum a = (3.8332335417084353e-19,-2.264123349119723e-17,2.400139824469388e-18)
    sum e = 0.06836287695165806
    sum de = -6.7220534694101275e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.01e-04 |
|       force | 1.23e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.50e+00 |
+-------------+----------+
Info: cfl dt = 0.00020123163808081492 cfl multiplier : 0.9999999999996044      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8482e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5077267447225268 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 130.63s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.015518404467792957, dt = 0.00020123163808081492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 326.39 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.965938453862842e-20,-5.083081985504861e-19,-9.769773401533264e-20)
    sum a = (3.679904200040098e-18,-2.251186185916457e-17,6.7527621188901415e-18)
    sum e = 0.06836287731740406
    sum de = -2.2659825404947043e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.02e-04 |
|       force | 1.23e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.52e+00 |
+-------------+----------+
Info: cfl dt = 0.0002024900328523973 cfl multiplier : 0.9999999999997362       [sph::Model][rank=0]
Info: Timestep 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.0163e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5254633107924404 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 132.01s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.01571963610587377, dt = 0.0002024900328523973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.43 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 327.35 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.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130426e-20,-5.126949862035032e-19,-9.592940093326014e-20)
    sum a = (-3.679904200040098e-18,-2.005694529993372e-17,-3.1125098701599603e-18)
    sum e = 0.06836287770500522
    sum de = -1.5178830414797062e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.04e-04 |
|       force | 1.24e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.55e+00 |
+-------------+----------+
Info: cfl dt = 0.00020380324988277705 cfl multiplier : 0.9999999999998241      [sph::Model][rank=0]
Info: Timestep 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.0353e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5304225901337813 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 133.39s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.015922126138726168, dt = 0.00020380324988277705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.07 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 329.18 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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 = (5.0311190234923215e-20,-5.16629057370729e-19,-9.761049949777653e-20)
    sum a = (-2.9132574916984108e-18,-2.4672547796932255e-17,2.903837290596269e-18)
    sum e = 0.06836287811605365
    sum de = -8.673617379884035e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.05e-04 |
|       force | 1.25e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.57e+00 |
+-------------+----------+
Info: cfl dt = 0.00020517259051281298 cfl multiplier : 0.9999999999998828      [sph::Model][rank=0]
Info: Timestep 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.0034e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5310407037909575 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 134.77s (max_walltime = 135.35s)  [SPH][rank=0]
---------------- t = 0.016125929388608944, dt = 0.00020517259051281298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (49.8%)
Warning: High interface/patch volume ratio.                                  [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.791541927135544e-21,-5.221996927850404e-19,-9.637547897115299e-20)
    sum a = (8.433113791758558e-19,-1.874960303225183e-17,1.1041884804519976e-18)
    sum e = 0.06836287855040367
    sum de = 1.734723475976807e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.08e-04 |
|       force | 1.26e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.60e+00 |
+-------------+----------+
Info: cfl dt = 0.0002078381402896025 cfl multiplier : 0.9999999999999218       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8744e+04 | 82944 |      1 | 1.412e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5231208240562789 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 136.18s > 135.35s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 4):
   -> walltime = 136.184759476 >= 135.35292390400002
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000004.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (54.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000004.sham                 [Shamrock Dump][rank=0]
              - took 6.35 ms, bandwidth = 2.82 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 136.184759476 -> 166.184759476

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.016331101979121757)
   -> iter = None (current = 84)
   -> walltime = 166.184759476 (current = 136.195338942)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 166.18s)      [SPH][rank=0]
---------------- t = 0.016331101979121757, dt = 0.0002078381402896025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.26 us    (1.5%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 263.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.330590393938293e-20,-5.253441421747231e-19,-9.638325368088736e-20)
    sum a = (3.679904200040098e-18,-2.385484121992953e-17,7.218956250855173e-18)
    sum e = 0.06836287947839291
    sum de = -6.938893903907228e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.11e-04 |
|       force | 1.27e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.63e+00 |
+-------------+----------+
Info: cfl dt = 0.00021141871098163284 cfl multiplier : 0.9999999999999479      [sph::Model][rank=0]
Info: Timestep 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.0683e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.547402440551139 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.84s (niter = 5) global walltime = 137.56s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.016538940119411358, dt = 0.00021141871098163284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.7%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 353.88 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.309861360015236e-19,-9.413710729693673e-20)
    sum a = (-3.2965808458692543e-18,-2.427410113855389e-17,-1.2402104305223608e-19)
    sum e = 0.06836288076694584
    sum de = 1.0625181290357943e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.13e-04 |
|       force | 1.29e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.66e+00 |
+-------------+----------+
Info: cfl dt = 0.00021304378808262322 cfl multiplier : 0.9999999999999654      [sph::Model][rank=0]
Info: Timestep 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.0140e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5518571454827451 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01675035883039299, dt = 0.00021304378808262322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 300.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.822660950627866e-20,-5.360256776573097e-19,-9.500627885573599e-20)
    sum a = (1.0733053916783619e-18,-2.3335557863576216e-17,8.655676516068721e-19)
    sum e = 0.06836288130652701
    sum de = 8.673617379884035e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.20e-04 |
|       force | 1.30e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.69e+00 |
+-------------+----------+
Info: cfl dt = 0.00022011522363433642 cfl multiplier : 0.9999999999999769      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9131e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5467623697223792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.016963402618475613, dt = 0.00022011522363433642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.0%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 377.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5936564453516584e-21,-5.41267596450155e-19,-9.468936621293081e-20)
    sum a = (1.5332934166833741e-18,-2.031224464323891e-17,-1.519699610761852e-18)
    sum e = 0.06836288400350872
    sum de = 1.8431436932253575e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.22e-04 |
|       force | 1.31e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.72e+00 |
+-------------+----------+
Info: cfl dt = 0.00022204649824113302 cfl multiplier : 0.9999999999999846      [sph::Model][rank=0]
Info: Timestep 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.0680e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5797093814490059 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01718351784210995, dt = 0.00022204649824113302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 359.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3655894492336302e-19,-5.452367619186049e-19,-9.527149627523805e-20)
    sum a = (-3.52657485837176e-18,-2.5145413090866444e-17,4.7964268334728974e-18)
    sum e = 0.06836288467539588
    sum de = 7.589415207398531e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.24e-04 |
|       force | 1.33e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.76e+00 |
+-------------+----------+
Info: cfl dt = 0.00022406189905294993 cfl multiplier : 0.9999999999999897      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7950e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.558488266667363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.017405564340351082, dt = 0.00022406189905294993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 39.16 us   (10.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 309.18 us  (83.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.504986920665591e-20,-5.515572455690721e-19,-9.348750239037771e-20)
    sum a = (-5.519856300060147e-18,-3.108393036681006e-17,3.3874333680858376e-19)
    sum e = 0.0683628853894262
    sum de = 2.927345865710862e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-04 |
|       force | 1.34e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.80e+00 |
+-------------+----------+
Info: cfl dt = 0.00023059043178823535 cfl multiplier : 0.9999999999999932      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9371e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5773805147810704 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 144.55s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.017629626239404034, dt = 0.00023059043178823535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 270.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5155595117461608e-20,-5.592440673471989e-19,-9.3927906156402e-20)
    sum a = (1.2266347333466993e-18,-2.1818885107952592e-17,6.494172796878925e-19)
    sum e = 0.06836288796868566
    sum de = -3.903127820947816e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.37e-04 |
|       force | 1.36e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.84e+00 |
+-------------+----------+
Info: cfl dt = 0.00023698197213439866 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    | 6.0416e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6046625951449094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01786021667119227, dt = 0.00023698197213439866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.95 us    (1.0%)
   patch tree reduce : 2.29 us    (0.3%)
   gen split merge   : 1.13 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.1%)
   LB compute        : 755.93 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 5.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (81.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2342908008164924e-20,-5.635431192471557e-19,-9.375421323593097e-20)
    sum a = (-5.213197616723472e-18,-2.2785428956066967e-17,1.386268804984188e-18)
    sum e = 0.06836289054858517
    sum de = -1.3769367590565906e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.37e-04 |
|       force | 1.37e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.88e+00 |
+-------------+----------+
Info: cfl dt = 0.00023697600388554964 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.0353e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6207743343023715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.018097198643326668, dt = 0.00023697600388554964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 344.19 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.827947246168151e-20,-5.690423962489781e-19,-9.335976619530391e-20)
    sum a = (-3.679904200040098e-18,-2.3926714348836563e-17,3.8274666699579736e-18)
    sum e = 0.06836289040433245
    sum de = -9.432558900623889e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.40e-04 |
|       force | 1.38e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.91e+00 |
+-------------+----------+
Info: cfl dt = 0.0002401000980222492 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    | 6.0468e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6219431529758894 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.16s (niter = 3) global walltime = 148.67s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.018334174647212216, dt = 0.0002401000980222492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1.35 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 391.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.750938235900601e-19,-9.211984104447152e-20)
    sum a = (-9.966407208441933e-19,-1.891056889386654e-17,4.021380229412683e-18)
    sum e = 0.06836289159340188
    sum de = -1.0733601507606494e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.39e-04 |
|       force | 1.39e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.92e+00 |
+-------------+----------+
Info: cfl dt = 0.00023897179738515347 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    | 6.0446e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6299120047847124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.018574274745234466, dt = 0.00023897179738515347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 281.80 us  (83.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.98942740891943e-20,-5.785435934003929e-19,-9.11530224282119e-20)
    sum a = (-6.133173666733497e-19,-2.1846062134820565e-17,2.8833524831327083e-18)
    sum e = 0.06836289093813148
    sum de = -4.553649124439119e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.38e-04 |
|       force | 1.39e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.93e+00 |
+-------------+----------+
Info: cfl dt = 0.000237924551074902 cfl multiplier : 0.9999999999999991        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0311e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6255462309404513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.018813246542619618, dt = 0.000237924551074902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 283.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.98942740891943e-21,-5.846552659585763e-19,-9.058693449314939e-20)
    sum a = (2.2999401250250612e-18,-2.2135576082199208e-17,1.5740022943857216e-18)
    sum e = 0.06836289030801548
    sum de = -3.0357660829594124e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.48e-04 |
|       force | 1.39e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.95e+00 |
+-------------+----------+
Info: cfl dt = 0.0002476362036314831 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    | 5.9008e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6093530959145118 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 152.82s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.01905117109369452, dt = 0.0002476362036314831 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 307.87 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.90143429765011e-19,-9.036407324395553e-20)
    sum a = (-4.2932215667134474e-18,-1.6119345985624864e-17,9.310134479524561e-18)
    sum e = 0.06836289431048628
    sum de = -4.9873299934333204e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.40e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 1.96e+00 |
+-------------+----------+
Info: cfl dt = 0.0002472256346094402 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0395e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6491325940815703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.019298807297326002, dt = 0.0002472256346094402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 333.96 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0780969336054975e-20,-5.930743888222469e-19,-8.712138032781296e-20)
    sum a = (-5.443191629225978e-18,-2.0565632516937427e-17,7.827553670654229e-18)
    sum e = 0.06836289388248515
    sum de = 8.998878031629687e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.41e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.97e+00 |
+-------------+----------+
Info: cfl dt = 0.0002468861278704058 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0399e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6481034161186136 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 155.57s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.019546032931935443, dt = 0.0002468861278704058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 278.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
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.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.989474201321063e-19,-8.536628765956935e-20)
    sum a = (-2.7599281500300737e-18,-1.3056465110467383e-17,4.939200087478805e-18)
    sum e = 0.06836289346439231
    sum de = 1.214306433183765e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.41e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.98e+00 |
+-------------+----------+
Info: cfl dt = 0.00024661254687207844 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0872e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6522806500391812 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 156.94s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.01979291905980585, dt = 0.00024661254687207844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 276.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.911330475313933e-20,-6.011156630427375e-19,-8.450929904158442e-20)
    sum a = (1.9166167708542177e-18,-1.6893778949598146e-17,4.081336602307007e-18)
    sum e = 0.06836289305819596
    sum de = 4.662069341687669e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.42e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 1.99e+00 |
+-------------+----------+
Info: cfl dt = 0.0002464026080813597 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0393e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6464225157646118 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 158.31s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.02003953160667793, dt = 0.0002464026080813597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 276.87 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.906044179773648e-20,-6.058247333619964e-19,-8.359642531474268e-20)
    sum a = (-2.1466107833567237e-18,-1.4123593905130297e-17,7.948889914590843e-18)
    sum e = 0.06836289265218504
    sum de = 9.64939933512099e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.43e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 2.00e+00 |
+-------------+----------+
Info: cfl dt = 0.00024625416481400793 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0416e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6461271060274733 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 159.68s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.02028593421475929, dt = 0.00024625416481400793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.36 us    (0.7%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 328.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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,-6.090229940135561e-19,-8.122332132203555e-20)
    sum a = (-3.0665868333667483e-18,-1.678873936641422e-17,5.9461875928366326e-18)
    sum e = 0.06836289224719491
    sum de = 0
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.44e-03 |
| dust1_fluid | 5.85e-04 |
|  dust_drift | 2.01e+00 |
+-------------+----------+
Info: cfl dt = 0.0002461652035175487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0439e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6459759232125402 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 161.06s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.020532188379573296, dt = 0.0002461652035175487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 335.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0364053190326064e-20,-6.135946116530203e-19,-7.993710502071675e-20)
    sum a = (-1.0733053916783619e-18,-1.7790471100555996e-17,4.371340009332156e-18)
    sum e = 0.0683628918502521
    sum de = 1.2468324983583301e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.45e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.02e+00 |
+-------------+----------+
Info: cfl dt = 0.00024613383745158626 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9484e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6355397817663865 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 162.45s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.020778353583090846, dt = 0.00024613383745158626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 293.92 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.179310974742829e-19,-7.904805147562712e-20)
    sum a = (-4.063227554210942e-18,-2.6997942988445224e-17,7.313250514788196e-18)
    sum e = 0.06836289145435723
    sum de = 8.131516293641283e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.46e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.04e+00 |
+-------------+----------+
Info: cfl dt = 0.0002461582993644517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8742e+04 | 82944 |      1 | 1.412e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.627537405365021 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 163.87s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.021024487420542432, dt = 0.0002461582993644517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 319.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0062238046984643e-19,-6.256307871628587e-19,-7.685712548976734e-20)
    sum a = (-1.4566287458492054e-18,-2.553891847163245e-17,5.209943877745558e-18)
    sum e = 0.06836289105570521
    sum de = 1.1492543028346347e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.47e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0002462369352033296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9317e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6337443573457529 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 165.27s (max_walltime = 166.18s)  [SPH][rank=0]
---------------- t = 0.021270645719906885, dt = 0.0002462369352033296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 275.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (86.8%)
Warning: High interface/patch volume ratio.                                  [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.156193867210995e-20,-6.317594219666338e-19,-7.583092301069012e-20)
    sum a = (1.5332934166833742e-19,-2.6451856944436996e-17,3.524514876514234e-18)
    sum e = 0.06836289065168677
    sum de = 4.0115480381963664e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.46e-04 |
|       force | 1.47e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0002463681984063338 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9982e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6410525947655283 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 166.65s > 166.18s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 5):
   -> walltime = 166.648926254 >= 166.184759476
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000005.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (52.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000005.sham                 [Shamrock Dump][rank=0]
              - took 7.03 ms, bandwidth = 2.55 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 166.648926254 -> 196.648926254

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.021516882655110214)
   -> iter = None (current = 106)
   -> walltime = 196.648926254 (current = 166.660891705)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 196.65s)      [SPH][rank=0]
---------------- t = 0.021516882655110214, dt = 0.0002463681984063338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.7%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 279.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.307101438881705e-20,-6.382717544637929e-19,-7.523024861391671e-20)
    sum a = (2.2232754541908927e-18,-2.0679396543405673e-17,8.441335015477233e-18)
    sum e = 0.06836289024116382
    sum de = 1.951563910473908e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.47e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0002465506445622172 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0373e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6455763934986486 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.88s (niter = 5) global walltime = 168.04s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.021763250853516547, dt = 0.0002465506445622172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 270.22 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.426889987060094e-20,-6.427837117911762e-19,-7.257035563247467e-20)
    sum a = (-2.9132574916984108e-18,-2.2858949177511453e-17,8.69006156779526e-18)
    sum e = 0.06836288982567297
    sum de = -9.75781955236954e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.47e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00024678292682066657 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9015e+04 | 82944 |      1 | 1.405e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6315202301428375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.022009801498078765, dt = 0.00024678292682066657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.2%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 307.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-6.48638611045403e-19,-7.039650064524594e-20)
    sum a = (-2.606598808361736e-18,-2.2620270495266014e-17,7.875509908686325e-18)
    sum e = 0.06836288939678008
    sum de = 1.826880660638075e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.47e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.15e+00 |
+-------------+----------+
Info: cfl dt = 0.0002470637915599808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8559e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6272254772447357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02225658442489943, dt = 0.0002470637915599808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.54 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 323.61 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.652970679012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2759824153893834e-20,-6.540302655234714e-19,-6.857121157391885e-20)
    sum a = (-2.1466107833567237e-18,-2.1544569332624082e-17,5.363774833511157e-18)
    sum e = 0.06836288895842264
    sum de = 1.22514845490862e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.47e-04 |
|       force | 1.47e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.18e+00 |
+-------------+----------+
Info: cfl dt = 0.0002473920732848505 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9972e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6430947832701044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02250364821645941, dt = 0.0002473920732848505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.58 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 327.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.426889987060094e-20,-6.591458448319098e-19,-6.751424497689737e-20)
    sum a = (-1.4566287458492054e-18,-2.4829470795045946e-17,1.8992270980508955e-18)
    sum e = 0.06836288850360651
    sum de = 3.7947076036992655e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.48e-04 |
|       force | 1.48e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.18e+00 |
+-------------+----------+
Info: cfl dt = 0.00024776669598758924 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9724e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6412831692909559 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02275104028974426, dt = 0.00024776669598758924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 336.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-6.6608632780400335e-19,-6.740641742275135e-20)
    sum a = (5.6731856417284845e-18,-2.9318846109401505e-17,1.983452294854078e-18)
    sum e = 0.06836288802916113
    sum de = -9.75781955236954e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.48e-04 |
|       force | 1.48e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.19e+00 |
+-------------+----------+
Info: cfl dt = 0.00024818667941379954 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8497e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6290582719821959 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 175.06s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.02299880698573185, dt = 0.00024818667941379954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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 = (-5.510273216205876e-20,-6.73636281807356e-19,-6.691844778658193e-20)
    sum a = (-4.063227554210942e-18,-2.2098890839319577e-17,2.836649533413737e-19)
    sum e = 0.0683628875419034
    sum de = -5.963111948670274e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.49e-04 |
|       force | 1.48e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.19e+00 |
+-------------+----------+
Info: cfl dt = 0.00024865111373477487 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9302e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6387971066063343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02324699366514565, dt = 0.00024865111373477487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 344.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.192599186243601e-20,-6.782546918484525e-19,-6.705220450357087e-20)
    sum a = (3.0665868333667483e-18,-2.7902645998562505e-17,-2.5488304264807382e-18)
    sum e = 0.06836288703997317
    sum de = 1.6263032587282567e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.49e-04 |
|       force | 1.48e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.20e+00 |
+-------------+----------+
Info: cfl dt = 0.000249159166317079 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9988e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6474010316089612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.023495644778880425, dt = 0.000249159166317079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 304.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.4632953060927e-20,-6.860912493118023e-19,-6.807123013289258e-20)
    sum a = (3.60323952920593e-18,-2.1366982809949622e-17,-1.1995057496690518e-18)
    sum e = 0.0683628865198199
    sum de = 1.7726705520137997e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.50e-04 |
|       force | 1.49e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.21e+00 |
+-------------+----------+
Info: cfl dt = 0.00024971007925195265 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9815e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6468487825186103 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.19s (niter = 3) global walltime = 179.23s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.023744803945197505, dt = 0.00024971007925195265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 281.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-20,-6.907728290951023e-19,-6.823515709276385e-20)
    sum a = (2.5299341375275673e-18,-2.990790629506873e-17,-4.7142561174178415e-18)
    sum e = 0.0683628859824341
    sum de = -1.691355389077387e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.50e-04 |
|       force | 1.49e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.23e+00 |
+-------------+----------+
Info: cfl dt = 0.00025030316756303377 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0710e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.657985219345764 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.023994514024449458, dt = 0.00025030316756303377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.01 us    (2.4%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 310.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-20,-6.989416126100406e-19,-6.975071702280603e-20)
    sum a = (9.966407208441933e-19,-2.0833324827814902e-17,2.2087729422568253e-18)
    sum e = 0.06836288543274247
    sum de = 1.5720931501039814e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.51e-04 |
|       force | 1.50e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.24e+00 |
+-------------+----------+
Info: cfl dt = 0.0002509378190557718 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9522e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6466391601307897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02424481719201249, dt = 0.0002509378190557718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 313.26 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.223718209735923e-20,-7.026113067080446e-19,-6.835780408199731e-20)
    sum a = (-1.6866227583517116e-18,-3.098570375730378e-17,-1.1568407806475543e-19)
    sum e = 0.06836288487202756
    sum de = 4.2825985813177425e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.52e-04 |
|       force | 1.50e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.26e+00 |
+-------------+----------+
Info: cfl dt = 0.00025154528167377316 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8945e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6419984219873166 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.79s (niter = 2) global walltime = 183.40s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.024495755011068262, dt = 0.00025154528167377316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 315.66 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-19,-7.122926546057433e-19,-6.868568029701432e-20)
    sum a = (-6.363167679236003e-18,-2.3689982230499023e-17,-1.4124082983571855e-18)
    sum e = 0.06836288427503742
    sum de = 1.0299920638612292e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.52e-04 |
|       force | 1.51e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.28e+00 |
+-------------+----------+
Info: cfl dt = 0.0002520830359299987 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0045e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6555604975425434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.024747300292742035, dt = 0.0002520830359299987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 282.31 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.156193867210995e-20,-7.169999702099409e-19,-6.914681552150173e-20)
    sum a = (4.063227554210942e-18,-2.0638368965654575e-17,-1.6423838014615798e-18)
    sum e = 0.06836288363293662
    sum de = -6.288372600415926e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.53e-04 |
|       force | 1.52e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.30e+00 |
+-------------+----------+
Info: cfl dt = 0.00025266432219530087 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0274e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6594643823008577 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 186.16s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.024999383328672034, dt = 0.00025266432219530087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 306.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2342908008164924e-20,-7.225565679037626e-19,-6.967376707147874e-20)
    sum a = (-4.369886237547617e-18,-1.0257493380515416e-17,6.194672088440627e-18)
    sum e = 0.06836288299239272
    sum de = 7.589415207398531e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.53e-04 |
|       force | 1.52e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.32e+00 |
+-------------+----------+
Info: cfl dt = 0.00025329043256493904 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9149e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6486437122793766 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 187.56s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.025252047650867335, dt = 0.00025329043256493904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 346.96 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.796828222675829e-20,-7.2317890684547065e-19,-6.704658384836303e-20)
    sum a = (-5.8265149833968216e-18,-2.4643499073998997e-17,-4.200337371339071e-18)
    sum e = 0.06836288235588227
    sum de = -1.5504091066542713e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.54e-04 |
|       force | 1.53e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.34e+00 |
+-------------+----------+
Info: cfl dt = 0.0002539626833276928 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9969e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6592674682593055 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 188.94s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.025505338083432274, dt = 0.0002539626833276928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.36 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 318.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 5.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5936564453516584e-21,-7.312739923278383e-19,-6.939784825429415e-20)
    sum a = (-1.5332934166833741e-18,-6.589568035293157e-18,1.4526677510221557e-17)
    sum e = 0.06836288172952612
    sum de = 3.74049749507499e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.55e-04 |
|       force | 1.54e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.37e+00 |
+-------------+----------+
Info: cfl dt = 0.0002546823919707314 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0023e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6616165081281036 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 190.33s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.025759300766759967, dt = 0.0002546823919707314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 286.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-20,-7.308996531147809e-19,-6.333352245930276e-20)
    sum a = (-1.0733053916783619e-18,-7.029192007107844e-18,1.9498733657865686e-17)
    sum e = 0.06836288111786158
    sum de = 6.667843360785852e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.55e-04 |
|       force | 1.55e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.39e+00 |
+-------------+----------+
Info: cfl dt = 0.00025545090440724956 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8925e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.651354418817848 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 191.73s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.0260139831587307, dt = 0.00025545090440724956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 271.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-7.326520285559061e-19,-5.782545914880852e-20)
    sum a = (-3.3732455167034233e-18,-1.631639814737831e-17,-7.829042848974835e-18)
    sum e = 0.06836288043280468
    sum de = 7.37257477290143e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.56e-04 |
|       force | 1.55e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.42e+00 |
+-------------+----------+
Info: cfl dt = 0.0002562836606709537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0253e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6680370668050251 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 193.11s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.026269434063137947, dt = 0.0002562836606709537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 313.15 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.072810638065213e-20,-7.380425132239336e-19,-6.32949431980823e-20)
    sum a = (-2.2999401250250614e-19,-4.78076095779949e-18,1.1647241133998258e-17)
    sum e = 0.06836287987918287
    sum de = -1.3335686721571705e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.57e-04 |
|       force | 1.56e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.45e+00 |
+-------------+----------+
Info: cfl dt = 0.0002571670730494854 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9116e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6575718586637721 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 194.52s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.026525717723808902, dt = 0.0002571670730494854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 327.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.708158697989762e-20,-7.380986641058922e-19,-5.772430730772565e-20)
    sum a = (1.3799640750150368e-18,-8.84398851201043e-18,1.692470295972275e-17)
    sum e = 0.06836287937329232
    sum de = -2.168404344971009e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.58e-04 |
|       force | 1.57e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.47e+00 |
+-------------+----------+
Info: cfl dt = 0.0002581026588161352 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9959e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.669252665804816 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 195.90s (max_walltime = 196.65s)  [SPH][rank=0]
---------------- t = 0.026782884796858388, dt = 0.0002581026588161352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.35 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 321.86 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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 = (2.994713704459715e-20,-7.406792650559071e-19,-5.2697904999030853e-20)
    sum a = (-5.903179654230991e-18,-7.226244168861292e-18,2.090225578864612e-17)
    sum e = 0.06836287890261238
    sum de = -6.071532165918825e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.59e-04 |
|       force | 1.58e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.50e+00 |
+-------------+----------+
Info: cfl dt = 0.00025909287016556373 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9715e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6689516431181436 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 197.29s > 196.65s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 6):
   -> walltime = 197.290759922 >= 196.648926254
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000006.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (51.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000006.sham                 [Shamrock Dump][rank=0]
              - took 7.65 ms, bandwidth = 2.34 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 197.290759922 -> 227.290759922

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.027040987455674525)
   -> iter = None (current = 128)
   -> walltime = 227.290759922 (current = 197.30345979900002)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 227.29s)      [SPH][rank=0]
---------------- t = 0.027040987455674525, dt = 0.00018123476654769571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.97 us    (3.2%)
   patch tree reduce : 3.09 us    (1.0%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 283.59 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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 = (7.187312890703316e-20,-7.417812261143451e-19,-4.8473925309333376e-20)
    sum a = (-2.2232754541908927e-18,-1.6275670040997662e-17,-8.539419033318013e-18)
    sum e = 0.0683628568131763
    sum de = -1.9678269430611905e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.61e-04 |
|       force | 1.59e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.52e+00 |
+-------------+----------+
Info: cfl dt = 0.0002613017048874633 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9402e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4672598037450325 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.99s (niter = 5) global walltime = 198.70s (max_walltime = 227.29s)  [SPH][rank=0]
Info: iteration since start : 130                                                     [SPH][rank=0]
Info: time since start : 198.700960173 (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/dustysod_128/l2_error_0000001.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 129)
   -> walltime = 227.290759922 (current = 200.960741433)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 227.29s)      [SPH][rank=0]
---------------- t = 0.02722222222222222, dt = 0.0002613017048874633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 295.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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 = (9.583083854271088e-20,-7.471880881229438e-19,-5.325319334874634e-20)
    sum a = (-5.864847318813906e-18,-2.1357699197465798e-17,4.9569774840270035e-18)
    sum e = 0.06836287882661632
    sum de = -3.63207727782644e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.62e-04 |
|       force | 1.60e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.55e+00 |
+-------------+----------+
Info: cfl dt = 0.00026243202530979647 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8526e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6637548131196594 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.67s (niter = 4) global walltime = 202.38s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.027483523927109683, dt = 0.00026243202530979647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.08 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 322.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1859066269660473e-19,-7.536571376485931e-19,-5.018098224453413e-20)
    sum a = (4.599880250050123e-19,-2.0528762444071348e-17,-1.9610873854396617e-18)
    sum e = 0.06836287840588003
    sum de = -1.4148838350935833e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.64e-04 |
|       force | 1.60e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.58e+00 |
+-------------+----------+
Info: cfl dt = 0.0002636094994354305 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9282e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6752437737090705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02774595595241948, dt = 0.0002636094994354305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 340.83 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.072810638065213e-20,-7.585563020994827e-19,-5.1712256565208467e-20)
    sum a = (-1.303299404180868e-18,-1.840850514131387e-17,4.798359113906019e-19)
    sum e = 0.06836287810392107
    sum de = -3.686287386450715e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.65e-04 |
|       force | 1.61e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.62e+00 |
+-------------+----------+
Info: cfl dt = 0.0002648273802921941 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0253e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6893826625996496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02800956545185491, dt = 0.0002648273802921941 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 315.84 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.072810638065213e-20,-7.633712402274342e-19,-5.128509011419221e-20)
    sum a = (-1.0733053916783619e-18,-1.9141012113424717e-17,3.64326838323677e-18)
    sum e = 0.06836287779890549
    sum de = 4.228388472693467e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.66e-04 |
|       force | 1.61e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.66e+00 |
+-------------+----------+
Info: cfl dt = 0.00026608832354653276 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0573e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6962370554036581 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.028274392832147107, dt = 0.00026608832354653276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.50 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 302.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.385198372487202e-21,-7.683265555602825e-19,-4.9712530746903005e-20)
    sum a = (2.6832634791959047e-18,-1.1948907680794264e-17,-5.518555916709694e-19)
    sum e = 0.0683628775857557
    sum de = 6.342582709040201e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.67e-04 |
|       force | 1.61e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.70e+00 |
+-------------+----------+
Info: cfl dt = 0.000267391794758648 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0198e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6952287597370311 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 207.91s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.02854048115569364, dt = 0.000267391794758648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 298.75 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.94773579434654e-20,-7.703667042714457e-19,-5.062899953051799e-20)
    sum a = (-1.6866227583517116e-18,-1.735137120363959e-17,-2.9412127570740225e-18)
    sum e = 0.06836287747276966
    sum de = -4.391018798566293e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.69e-04 |
|       force | 1.61e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.74e+00 |
+-------------+----------+
Info: cfl dt = 0.00026873720781494083 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8914e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6837327764729668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.028807872950452288, dt = 0.00026873720781494083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 332.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084355e-20,-7.757993021009421e-19,-5.171517729779431e-20)
    sum a = (4.638212585467207e-18,-1.824499377305037e-17,-5.042293890538028e-18)
    sum e = 0.06836287743495545
    sum de = -1.723881454251952e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.70e-04 |
|       force | 1.61e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.78e+00 |
+-------------+----------+
Info: cfl dt = 0.00027012465080337333 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0218e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7023834687935101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02907661015826723, dt = 0.00027012465080337333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 328.89 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4135048685049856e-19,-7.809137115993397e-19,-5.330103582758573e-20)
    sum a = (-3.25824851045217e-18,-1.8691805057755758e-17,-5.625070450636521e-19)
    sum e = 0.06836287743009274
    sum de = 2.179246366695864e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.72e-04 |
|       force | 1.62e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.83e+00 |
+-------------+----------+
Info: cfl dt = 0.00027155446225900996 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0236e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7062128059809873 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.78s (niter = 2) global walltime = 212.07s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.0293467348090706, dt = 0.00027155446225900996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 310.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.377568304051469e-19,-7.862059322239396e-19,-5.282478581068667e-20)
    sum a = (-4.983203604220966e-18,-1.6211583167722224e-17,1.227218094501502e-18)
    sum e = 0.06836287754719947
    sum de = -1.2468324983583301e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.73e-04 |
|       force | 1.62e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.84e+00 |
+-------------+----------+
Info: cfl dt = 0.00027302718579000915 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0318e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7109251399921743 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02961828927132961, dt = 0.00027302718579000915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 335.07 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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 = (-6.109215957097819e-20,-7.905482670954062e-19,-5.236511662362549e-20)
    sum a = (-1.9932814416883866e-18,-1.615528255007838e-17,2.5249949472755826e-18)
    sum e = 0.06836287774102347
    sum de = 8.673617379884035e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.75e-04 |
|       force | 1.63e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.85e+00 |
+-------------+----------+
Info: cfl dt = 0.00027454337335569486 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0162e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7129280174662223 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 214.83s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.02989131645711962, dt = 0.00027454337335569486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 284.63 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-20,-7.949701490496475e-19,-5.1459338514978463e-20)
    sum a = (-7.283143729246027e-19,-1.8681024088419704e-17,-1.1335556525142766e-19)
    sum e = 0.06836287800072813
    sum de = 1.4094628242311558e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.76e-04 |
|       force | 1.63e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.86e+00 |
+-------------+----------+
Info: cfl dt = 0.00027610357564602334 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0310e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7186456607974313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.030165859830475317, dt = 0.00027610357564602334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.38 us    (2.2%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 313.25 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 35.10 us   (97.2%)
Warning: High interface/patch volume ratio.                                  [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 = (9.942449498806255e-20,-8.003746714381646e-19,-5.171360374967272e-20)
    sum a = (-1.6866227583517116e-18,-1.5518007473769354e-17,4.016893766839473e-19)
    sum e = 0.06836287832344091
    sum de = 9.107298248878237e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.78e-04 |
|       force | 1.64e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.87e+00 |
+-------------+----------+
Info: cfl dt = 0.000277708363446448 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0134e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7206295925477024 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 217.58s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.03044196340612134, dt = 0.000277708363446448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.26 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 365.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.650800540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.223718209735923e-20,-8.04412855699022e-19,-5.146152747533095e-20)
    sum a = (-2.798260485447158e-18,-2.1212156111429054e-17,2.881944386113244e-19)
    sum e = 0.06836287870510793
    sum de = -2.0599841277224584e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.82e-04 |
|       force | 1.65e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.88e+00 |
+-------------+----------+
Info: cfl dt = 0.0002819797655924422 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0237e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7260556705652075 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 218.96s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.03071967176956779, dt = 0.0002819797655924422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.6%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 391.82 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1859066269660473e-19,-8.108608486439368e-19,-5.1453562245160154e-20)
    sum a = (2.4532694666933987e-18,-1.657693823966631e-17,-4.831454835109551e-18)
    sum e = 0.06836287998202972
    sum de = -1.0462550964485118e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.85e-04 |
|       force | 1.66e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.90e+00 |
+-------------+----------+
Info: cfl dt = 0.00028503953196930764 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0367e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.738816531896962 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 220.34s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.03100165153516023, dt = 0.00028503953196930764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.11 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 307.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3176740299622746e-19,-8.151610703539345e-19,-5.368548139401512e-20)
    sum a = (2.9899221625325797e-18,-2.142358289896391e-17,-2.0572896963251396e-18)
    sum e = 0.06836288094338487
    sum de = -1.0842021724855044e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.87e-04 |
|       force | 1.67e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.91e+00 |
+-------------+----------+
Info: cfl dt = 0.00028667354307052793 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0147e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7441063337353782 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 221.72s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.031286691067129536, dt = 0.00028667354307052793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.6%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 368.66 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 5.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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 = (-4.791541927135544e-21,-8.219319308701114e-19,-5.381904965374108e-20)
    sum a = (-1.954949106271302e-18,-1.8457019503326117e-17,-5.687960562518567e-19)
    sum e = 0.06836288148805493
    sum de = -4.336808689942018e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.87e-04 |
|       force | 1.68e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.91e+00 |
+-------------+----------+
Info: cfl dt = 0.00028705708717277867 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0360e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7510298772697945 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 223.09s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.031573364610200064, dt = 0.00028705708717277867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.29 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 349.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6508005401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.874925156281327e-20,-8.268825669627963e-19,-5.381540195678769e-20)
    sum a = (-5.0215359396380506e-18,-2.033290816779968e-17,-1.1900866955431758e-17)
    sum e = 0.06836288166100139
    sum de = -1.588356182691264e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.87e-04 |
|       force | 1.68e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.91e+00 |
+-------------+----------+
Info: cfl dt = 0.00028748032382842296 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8701e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7313650486167106 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 224.51s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.03186042169737284, dt = 0.00028748032382842296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 347.16 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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 = (-2.6353480599245494e-20,-8.329749376553065e-19,-5.865401974732554e-20)
    sum a = (-4.331553902130532e-18,-2.1782948543499075e-17,-3.3514831401585514e-18)
    sum e = 0.06836288187009787
    sum de = -9.378348791999613e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.88e-04 |
|       force | 1.68e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.92e+00 |
+-------------+----------+
Info: cfl dt = 0.00028794211299139826 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9659e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7443954184626556 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 225.90s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.03214790202120126, dt = 0.00028794211299139826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.20 us    (2.5%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 264.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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 = (-8.864352565200757e-20,-8.393995343994053e-19,-5.838961343062405e-20)
    sum a = (-6.209838337567665e-18,-2.1113330559181884e-17,-3.475294637229898e-18)
    sum e = 0.06836288211135588
    sum de = -1.3931997916438732e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.88e-04 |
|       force | 1.68e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.92e+00 |
+-------------+----------+
Info: cfl dt = 0.00028844154478489234 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9754e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7467721838484562 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 227.29s (max_walltime = 227.29s)  [SPH][rank=0]
---------------- t = 0.03243584413419266, dt = 0.00028844154478489234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 287.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6486183449074072
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.103929661557534e-20,-8.456884331787707e-19,-5.952524705705937e-20)
    sum a = (-8.8164371459294e-19,-2.0050806136839576e-17,-6.228407934959371e-18)
    sum e = 0.06836288237843992
    sum de = -3.957337929572091e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.89e-04 |
|       force | 1.69e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.92e+00 |
+-------------+----------+
Info: cfl dt = 0.00028897775806623294 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8677e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.734590749684917 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 228.70s > 227.29s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 7):
   -> walltime = 228.70025734 >= 227.290759922
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000007.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (51.5%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000007.sham                 [Shamrock Dump][rank=0]
              - took 6.07 ms, bandwidth = 2.95 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 228.70025734 -> 258.70025734

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.032724285678977554)
   -> iter = None (current = 149)
   -> walltime = 258.70025734 (current = 228.710727974)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 258.70s)      [SPH][rank=0]
---------------- t = 0.032724285678977554, dt = 0.00028897775806623294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.41 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 312.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074072
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.060363028668284e-19,-8.513128798549591e-19,-6.181056171799622e-20)
    sum a = (2.1082784479396394e-18,-1.6646415597609774e-17,-4.565954485401279e-18)
    sum e = 0.06836288266416353
    sum de = 5.5294310796760726e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.90e-04 |
|       force | 1.69e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.93e+00 |
+-------------+----------+
Info: cfl dt = 0.0002895157939485721 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0104e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7538538334494236 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.90s (niter = 5) global walltime = 230.09s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.033013263437043784, dt = 0.0002895157939485721 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 276.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.6486183449074079
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-8.554774036002234e-19,-6.275856762720349e-20)
    sum a = (-1.5332934166833742e-19,-1.5610843598607604e-17,2.854049123512878e-18)
    sum e = 0.06836288295275944
    sum de = -6.613633252161577e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.90e-04 |
|       force | 1.70e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.93e+00 |
+-------------+----------+
Info: cfl dt = 0.0002900581829181702 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0278e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7574440269497397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.033302779230992355, dt = 0.0002900581829181702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.20 us    (2.4%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 279.26 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.6486183449074079
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0780969336054974e-19,-8.598103799913636e-19,-6.099586359538606e-20)
    sum a = (4.599880250050123e-19,-8.310929472616602e-18,-4.6477955280623546e-18)
    sum e = 0.06836288324361464
    sum de = 2.7647155398380363e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.91e-04 |
|       force | 1.70e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.94e+00 |
+-------------+----------+
Info: cfl dt = 0.0002906308414682279 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9515e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7492578152693681 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.033592837413910524, dt = 0.0002906308414682279 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.2%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 306.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4436863828391274e-19,-8.616165666943658e-19,-6.332874936917545e-20)
    sum a = (1.9166167708542177e-19,-1.2069894114454437e-17,-2.652651981597073e-18)
    sum e = 0.06836288354170028
    sum de = -4.553649124439119e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.91e-04 |
|       force | 1.71e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.95e+00 |
+-------------+----------+
Info: cfl dt = 0.0002912332258811823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9692e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7529714945335766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03388346825537875, dt = 0.0002912332258811823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.53 us    (2.5%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 280.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.89265906121854e-19,-8.654535436282049e-19,-6.38427122532223e-20)
    sum a = (2.6449311437788205e-18,-1.1678185561911106e-17,-2.8350656290770266e-18)
    sum e = 0.06836288384043573
    sum de = -2.3310346708438345e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.92e-04 |
|       force | 1.71e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.97e+00 |
+-------------+----------+
Info: cfl dt = 0.0002918648463170843 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0237e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7614211920407393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.034174701481259936, dt = 0.0002918648463170843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 275.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1322361575753172e-19,-8.688787474276806e-19,-6.477305322649066e-20)
    sum a = (-5.366526958391809e-19,-1.806291517981922e-17,-3.95973867812608e-18)
    sum e = 0.06836288413542017
    sum de = -1.0354130747236567e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.93e-04 |
|       force | 1.72e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.98e+00 |
+-------------+----------+
Info: cfl dt = 0.00029252526311462034 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0318e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7640894133867966 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 237.01s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03446656632757702, dt = 0.00029252526311462034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 269.36 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.89265906121854e-19,-8.749056087579057e-19,-6.586234026942556e-20)
    sum a = (4.13989222504511e-18,-1.796468857031294e-17,-6.195347616704755e-18)
    sum e = 0.06836288441872491
    sum de = 1.4582519219930035e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.93e-04 |
|       force | 1.72e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.98e+00 |
+-------------+----------+
Info: cfl dt = 0.00029321408508570804 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0370e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7664880273818466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03475909159069164, dt = 0.00029321408508570804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 314.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.6486183449074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-8.802586595046275e-19,-6.823135918503156e-20)
    sum a = (6.51649702090434e-19,-1.98633370589404e-17,-6.01929477803013e-18)
    sum e = 0.06836288468542397
    sum de = -2.439454888092385e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.94e-04 |
|       force | 1.72e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.98e+00 |
+-------------+----------+
Info: cfl dt = 0.000293930969504824 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7972e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7377673797479107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03505230567577735, dt = 0.000293930969504824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.0%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 321.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 5.19 us    (1.5%)
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.6486183449074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.293716320326597e-19,-8.862668038741998e-19,-6.985293989376178e-20)
    sum a = (3.679904200040098e-18,-2.0907294256315055e-17,-9.605755404282614e-19)
    sum e = 0.06836288493340265
    sum de = -1.214306433183765e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.95e-04 |
|       force | 1.73e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.98e+00 |
+-------------+----------+
Info: cfl dt = 0.0002946756233404767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9664e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7611615853805849 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.16s (niter = 3) global walltime = 241.21s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03534623664528217, dt = 0.0002946756233404767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 294.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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.6475332754629632
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8687013515828623e-19,-8.922655897634456e-19,-6.948411820015511e-20)
    sum a = (-1.2649670687637836e-18,-1.897270920323408e-17,-1.1511443256178572e-17)
    sum e = 0.06836288515922978
    sum de = -4.445228907190568e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.95e-04 |
|       force | 1.73e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 2.99e+00 |
+-------------+----------+
Info: cfl dt = 0.0002954478084118793 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9909e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7662157561105399 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03564091226862265, dt = 0.0002954478084118793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.82 us    (2.4%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 305.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.114502252638104e-20,-8.978806779593076e-19,-7.435795638030892e-20)
    sum a = (2.5299341375275673e-18,-1.5836645011923866e-17,-1.7065636496985283e-17)
    sum e = 0.06836288536440245
    sum de = -1.3986208025063007e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.96e-04 |
|       force | 1.74e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.00e+00 |
+-------------+----------+
Info: cfl dt = 0.00029624734714979857 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0748e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7789905385306634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.035936360077034525, dt = 0.00029624734714979857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.97 us    (2.3%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.60 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.646448206018519
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708158697989762e-20,-9.019422584209811e-19,-8.028584154721899e-20)
    sum a = (-2.2232754541908927e-18,-2.492260639125464e-17,-1.8777629569951056e-17)
    sum e = 0.06836288554733956
    sum de = -6.884683795282953e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.97e-04 |
|       force | 1.74e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.02e+00 |
+-------------+----------+
Info: cfl dt = 0.0002970740917585154 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8877e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7570413914509848 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.78s (niter = 2) global walltime = 245.37s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03623260742418433, dt = 0.0002970740917585154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.31 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-21,-9.1066436208522e-19,-8.607920962510406e-20)
    sum a = (-2.2999401250250612e-18,-1.9677664809263896e-17,-2.5301593146027493e-17)
    sum e = 0.06836288570192968
    sum de = -1.0950441942103595e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.98e-04 |
|       force | 1.74e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.03e+00 |
+-------------+----------+
Info: cfl dt = 0.00029792793426146764 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0827e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7842988255398513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.036529681515942845, dt = 0.00029792793426146764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.5%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 273.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.62477546884398e-20,-9.159425449893304e-19,-9.473436366405052e-20)
    sum a = (2.261607789607977e-18,-2.631874192027376e-17,-2.566183906078753e-17)
    sum e = 0.06836288582621539
    sum de = 2.0599841277224584e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.99e-04 |
|       force | 1.74e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0002988088065585442 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0627e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7839555820953488 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 248.10s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.036827609450204316, dt = 0.0002988088065585442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 278.21 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [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 = (-6.229004505276208e-20,-9.246552901732428e-19,-1.0233332373871911e-19)
    sum a = (-2.6449311437788205e-18,-1.4118877231045773e-17,-2.1996802891427947e-18)
    sum e = 0.06836288590337505
    sum de = -1.734723475976807e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.00e-04 |
|       force | 1.74e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00029971667167559617 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0603e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7859624185361294 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 249.47s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03712641825676286, dt = 0.00029971667167559617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.15 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 329.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406634e-20,-9.268170991286497e-19,-9.954088243934511e-20)
    sum a = (-7.666467083416871e-20,-2.8800760638529975e-17,-3.1210389555870155e-17)
    sum e = 0.06836288594289033
    sum de = -3.198396408832238e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.01e-04 |
|       force | 1.75e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00030065152751883366 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0200e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7831132006349589 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 250.85s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03742613492843846, dt = 0.00030065152751883366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 340.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-9.380004831187415e-19,-1.131734000846296e-19)
    sum a = (-8.049790437587714e-19,-2.314614222176914e-17,-2.178998561874777e-17)
    sum e = 0.06836288594162249
    sum de = 1.3823577699190182e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.02e-04 |
|       force | 1.75e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.15e+00 |
+-------------+----------+
Info: cfl dt = 0.0003016133964847018 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9415e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7753191698376323 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 252.25s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03772678645595729, dt = 0.0003016133964847018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 363.17 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.01 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.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6770396744974404e-20,-9.441396462128838e-19,-1.183047508556991e-19)
    sum a = (3.449910187537592e-18,-2.863305667108023e-17,-2.4816139684521114e-17)
    sum e = 0.06836288588547637
    sum de = 7.047314121155779e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.03e-04 |
|       force | 1.76e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.18e+00 |
+-------------+----------+
Info: cfl dt = 0.0003026023251051716 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9345e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7768707423161033 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 253.64s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03802839985244199, dt = 0.0003026023251051716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 320.47 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406633e-19,-9.535168434999733e-19,-1.2637826536028786e-19)
    sum a = (-2.6832634791959047e-18,-1.8403114656645842e-17,-2.1102265551592843e-17)
    sum e = 0.06836288578147985
    sum de = 1.5178830414797062e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.04e-04 |
|       force | 1.77e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.23e+00 |
+-------------+----------+
Info: cfl dt = 0.000303618379881256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9013e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7750680907045661 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 255.05s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03833100217754716, dt = 0.000303618379881256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.22 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 353.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3655894492336302e-19,-9.575784239616468e-19,-1.3216013145712512e-19)
    sum a = (4.714877256301376e-18,-1.9057160129699843e-17,-2.2839550481271148e-17)
    sum e = 0.06836288563617589
    sum de = 7.914675859144182e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.05e-04 |
|       force | 1.77e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.27e+00 |
+-------------+----------+
Info: cfl dt = 0.0003046616432260495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9126e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7791581390675827 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 256.46s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.03863462055742842, dt = 0.0003046616432260495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (0.5%)
   patch tree reduce : 2.15 us    (0.2%)
   gen split merge   : 1.21 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.1%)
   LB compute        : 1.34 ms    (98.2%)
   LB move op cnt    : 0
   LB apply          : 5.29 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (78.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6464482060185188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.593656445351658e-20,-9.635865683312191e-19,-1.3946652422122907e-19)
    sum a = (1.2266347333466993e-18,-1.9614176878729352e-17,-1.8087460225368544e-17)
    sum e = 0.06836288544457732
    sum de = -1.1546753136970622e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.06e-04 |
|       force | 1.77e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.33e+00 |
+-------------+----------+
Info: cfl dt = 0.0003057322093551236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0246e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7966395310850239 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 257.83s (max_walltime = 258.70s)  [SPH][rank=0]
---------------- t = 0.038939282200654464, dt = 0.0003057322093551236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 312.66 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6442660108024694
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.864352565200757e-20,-9.697070144647086e-19,-1.4423136874781035e-19)
    sum a = (4.714877256301376e-18,-2.3566600025875284e-17,-2.0241178231848773e-17)
    sum e = 0.06836288520271026
    sum de = -1.1438332919722072e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.07e-04 |
|       force | 1.78e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.39e+00 |
+-------------+----------+
Info: cfl dt = 0.0003068301799222744 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9454e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7889281209998704 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 259.23s > 258.70s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 8):
   -> walltime = 259.229045609 >= 258.70025734
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000008.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (55.2%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000008.sham                 [Shamrock Dump][rank=0]
              - took 6.54 ms, bandwidth = 2.74 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 259.229045609 -> 289.229045609

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.03924501441000959)
   -> iter = None (current = 171)
   -> walltime = 289.229045609 (current = 259.23979047800003)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 289.23s)      [SPH][rank=0]
---------------- t = 0.03924501441000959, dt = 0.0003068301799222744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 301.88 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.776430057815268e-19,-1.507445822438658e-19)
    sum a = (3.756568870874267e-18,-2.3277909624765365e-17,-1.6852800385993293e-17)
    sum e = 0.06836288493040357
    sum de = 7.047314121155779e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.08e-04 |
|       force | 1.78e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.41e+00 |
+-------------+----------+
Info: cfl dt = 0.00030795565962987975 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9255e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7891098682268546 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.00s (niter = 5) global walltime = 260.64s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.03955184458993186, dt = 0.00030795565962987975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.23 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 312.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (84.3%)
Warning: High interface/patch volume ratio.                                  [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 = (-7.187312890703316e-20,-9.846805829870072e-19,-1.5533296609509023e-19)
    sum a = (3.1432515042009172e-18,-2.699674510296344e-17,-1.3425321444760356e-17)
    sum e = 0.06836288462506337
    sum de = 1.1926223897340549e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.09e-04 |
|       force | 1.79e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.43e+00 |
+-------------+----------+
Info: cfl dt = 0.00030910875171700033 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9693e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7978674528629988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03985980024956174, dt = 0.00030910875171700033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 272.88 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6442660108024694
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-9.93505629934837e-19,-1.5903740521318346e-19)
    sum a = (-2.491601802110483e-18,-3.638068049588796e-17,-1.602674924066358e-17)
    sum e = 0.068362884288545
    sum de = 1.4094628242311558e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.10e-04 |
|       force | 1.79e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.44e+00 |
+-------------+----------+
Info: cfl dt = 0.00031028955315846516 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8490e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7847186440986771 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.040168909001278744, dt = 0.00031028955315846516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 277.17 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6442660108024691
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2697586106909193e-19,-1.0059056163673654e-18,-1.6437805920537066e-19)
    sum a = (4.523215579215954e-18,-2.4911675686233363e-17,-1.4416374462851542e-17)
    sum e = 0.06836288391482134
    sum de = 2.927345865710862e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.11e-04 |
|       force | 1.79e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.44e+00 |
+-------------+----------+
Info: cfl dt = 0.00031149815015287175 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8471e+04 | 82944 |      1 | 1.419e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7874597493507777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.040479198554437205, dt = 0.00031149815015287175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.88 us    (2.7%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 271.42 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.643180941358025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-20,-1.0117172326500826e-18,-1.6866611233297104e-19)
    sum a = (-2.606598808361736e-18,-3.314893520172026e-17,-1.6398971568883077e-17)
    sum e = 0.06836288351796453
    sum de = -2.927345865710862e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.13e-04 |
|       force | 1.79e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.43e+00 |
+-------------+----------+
Info: cfl dt = 0.000312734613349707 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0456e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.817356989799465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.040790696704590075, dt = 0.000312734613349707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 301.11 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-20,-1.0235182763417192e-18,-1.7402113297334582e-19)
    sum a = (-3.2965808458692543e-18,-2.2532675119410567e-17,-3.942115160643201e-18)
    sum e = 0.068362883101005
    sum de = -6.071532165918825e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.14e-04 |
|       force | 1.79e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.44e+00 |
+-------------+----------+
Info: cfl dt = 0.0003139989927914979 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0689e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8237697010899918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.19s (niter = 3) global walltime = 267.61s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04110343131793978, dt = 0.0003139989927914979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.83 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245494e-20,-1.0289461949310524e-18,-1.733528292414715e-19)
    sum a = (3.2965808458692543e-18,-2.826957329520143e-17,-1.563007125953864e-18)
    sum e = 0.06836288267193585
    sum de = 7.047314121155779e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.15e-04 |
|       force | 1.79e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.44e+00 |
+-------------+----------+
Info: cfl dt = 0.0003152913129988517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0889e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8298210003553409 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04141743031073128, dt = 0.0003152913129988517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.86 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-21,-1.0392124478491533e-18,-1.7344807987617087e-19)
    sum a = (3.0665868333667483e-18,-2.091985099729305e-17,-3.93701599923594e-18)
    sum e = 0.06836288223316636
    sum de = 3.957337929572091e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.17e-04 |
|       force | 1.80e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.45e+00 |
+-------------+----------+
Info: cfl dt = 0.0003166115683539715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0793e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8319172481217719 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04173272162373013, dt = 0.0003166115683539715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.90 us    (2.2%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 332.01 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.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.044752668202404e-18,-1.7511765317336e-19)
    sum a = (-3.1049191687838326e-18,-2.468950536328376e-17,-6.279706186194233e-18)
    sum e = 0.06836288179300065
    sum de = 2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.18e-04 |
|       force | 1.80e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.46e+00 |
+-------------+----------+
Info: cfl dt = 0.00031758174969667935 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0879e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8365927750169427 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 271.70s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.0420493331920841, dt = 0.00031758174969667935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 273.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.906044179773648e-20,-1.0529694139290152e-18,-1.7748057520772676e-19)
    sum a = (-6.976485045909353e-18,-2.35484820079633e-17,-7.937858081221723e-18)
    sum e = 0.06836288123695093
    sum de = 4.174178364069192e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.13e-04 |
|       force | 1.81e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.47e+00 |
+-------------+----------+
Info: cfl dt = 0.00031315673938093916 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0597e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8352605855857176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04236691494178078, dt = 0.00031315673938093916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 284.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-1.0601005759377599e-18,-1.801964037057335e-19)
    sum a = (1.5332934166833741e-18,-2.1259472587959518e-17,-9.238017652732207e-18)
    sum e = 0.06836287906818198
    sum de = -5.854691731421724e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.15e-04 |
|       force | 1.81e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.0003148016071562902 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0193e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8181368403726491 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04268007168116172, dt = 0.0003148016071562902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.96 us    (2.5%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 294.73 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.385198372487202e-20,-1.0665204934416954e-18,-1.8330251489719766e-19)
    sum a = (-2.2999401250250612e-18,-3.0390055201486743e-17,-2.245308728012738e-17)
    sum e = 0.06836287872259902
    sum de = -1.4799359654427136e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.17e-04 |
|       force | 1.82e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.000316529696105133 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8681e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8017789220271743 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 275.87s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.042994873288318004, dt = 0.000316529696105133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.25 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 334.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0364053190326063e-19,-1.0773856891006882e-18,-1.924780558947029e-19)
    sum a = (1.2649670687637836e-18,-3.689068023975745e-17,-3.0038809162093365e-17)
    sum e = 0.06836287841895265
    sum de = -9.432558900623889e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.18e-04 |
|       force | 1.82e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.0003183438472082104 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0714e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8341091234222316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04331140298442314, dt = 0.0003183438472082104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.0%)
   patch tree reduce : 2.64 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 345.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5572511263190519e-19,-1.0902723165101916e-18,-2.0317438924180394e-19)
    sum a = (-1.954949106271302e-18,-3.818858915927029e-17,-2.5049661758730793e-17)
    sum e = 0.06836287811227311
    sum de = 1.6263032587282567e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.20e-04 |
|       force | 1.82e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.00032024562580555487 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0536e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8364244490506925 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 278.60s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04362974683163135, dt = 0.00032024562580555487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 325.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3655894492336302e-19,-1.1024476994148855e-18,-2.1046606364758932e-19)
    sum a = (-2.2999401250250614e-19,-3.4980352367682593e-17,-2.893638413193142e-17)
    sum e = 0.06836287787406599
    sum de = -2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.21e-04 |
|       force | 1.83e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.50e+00 |
+-------------+----------+
Info: cfl dt = 0.0003208900984615031 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9258e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8236654712632836 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 280.00s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04394999245743691, dt = 0.0003208900984615031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 347.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353480599245494e-20,-1.1132005933099612e-18,-2.2036997220906486e-19)
    sum a = (-7.704799418833955e-18,-3.887018599840532e-17,-2.514602524711653e-17)
    sum e = 0.06836287731682157
    sum de = -1.1167282376600696e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.22e-04 |
|       force | 1.83e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.50e+00 |
+-------------+----------+
Info: cfl dt = 0.0003215051396431471 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0744e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8460066644432108 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 281.37s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04427088255589841, dt = 0.0003215051396431471 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 313.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-1.126508352334154e-18,-2.279111095730301e-19)
    sum a = (1.1499700625125307e-19,-3.2919090924902974e-17,-2.3022586074498767e-17)
    sum e = 0.06836287679055252
    sum de = -9.540979117872439e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.22e-04 |
|       force | 1.83e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.0003221389217248285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8160e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8115793234337718 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 282.80s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04459238769554155, dt = 0.0003221389217248285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.17 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 317.60 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6353480599245494e-20,-1.1358481156999377e-18,-2.349639355320787e-19)
    sum a = (4.983203604220967e-19,-3.594315282366639e-17,-2.210383561409714e-17)
    sum e = 0.0683628763131
    sum de = 3.415236843329339e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.17e-04 |
|       force | 1.83e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.00031701160063746925 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0528e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.846285913453445 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 284.17s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04491452661726638, dt = 0.00031701160063746925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 315.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.874925156281327e-20,-1.1481077249275697e-18,-2.4183551711055625e-19)
    sum a = (4.829874262552629e-18,-3.732760896923812e-17,-2.145362139387546e-17)
    sum e = 0.06836287434110341
    sum de = -1.805196617188365e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.19e-04 |
|       force | 1.83e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.00031870804962117594 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0611e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.833952660920924 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 285.54s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04523153821790385, dt = 0.00031870804962117594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 268.41 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.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.1601052967060615e-18,-2.485851096893044e-19)
    sum a = (4.714877256301376e-18,-3.7919064925868914e-17,-2.1320853540448555e-17)
    sum e = 0.06836287427130128
    sum de = 4.336808689942018e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.20e-04 |
|       force | 1.84e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.00032048905896381324 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8387330995221254 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 286.91s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.045550246267525026, dt = 0.00032048905896381324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 290.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.072810638065213e-20,-1.17250528313859e-18,-2.553561284180711e-19)
    sum a = (3.1049191687838326e-18,-3.327186819928833e-17,-2.630976653033458e-17)
    sum e = 0.06836287426311642
    sum de = 1.235990476633475e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.22e-04 |
|       force | 1.84e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.49e+00 |
+-------------+----------+
Info: cfl dt = 0.00032235748679091157 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9306e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8249497890802994 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 288.31s (max_walltime = 289.23s)  [SPH][rank=0]
---------------- t = 0.04587073532648884, dt = 0.00032235748679091157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 264.34 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (83.4%)
Warning: High interface/patch volume ratio.                                  [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.0062238046984643e-19,-1.1824159138042864e-18,-2.646304949416022e-19)
    sum a = (3.449910187537592e-18,-3.522561942007785e-17,-2.6241053891056327e-17)
    sum e = 0.06836287432424806
    sum de = -1.0570971181733668e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.24e-04 |
|       force | 1.84e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.50e+00 |
+-------------+----------+
Info: cfl dt = 0.0003243145282280564 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0622e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8481714557854486 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 289.68s > 289.23s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 9):
   -> walltime = 289.67679755700004 >= 289.229045609
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000009.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (57.3%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000009.sham                 [Shamrock Dump][rank=0]
              - took 6.09 ms, bandwidth = 2.95 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 289.67679755700004 -> 319.67679755700004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.04619309281327975)
   -> iter = None (current = 193)
   -> walltime = 319.67679755700004 (current = 289.68706832600003)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 319.68s)      [SPH][rank=0]
---------------- t = 0.04619309281327975, dt = 0.0003243145282280564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.57 us    (1.1%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 396.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2697586106909193e-19,-1.1940859387713529e-18,-2.731953976872902e-19)
    sum a = (3.1815838396180015e-18,-2.833358530063426e-17,-2.15481090299244e-17)
    sum e = 0.06836287445721127
    sum de = -1.6263032587282567e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.26e-04 |
|       force | 1.85e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.51e+00 |
+-------------+----------+
Info: cfl dt = 0.00032629464883878205 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8516693510087234 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.86s (niter = 5) global walltime = 291.06s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.046517407341507805, dt = 0.00032629464883878205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.26 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 347.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974404e-20,-1.2020780809701298e-18,-2.794258219520419e-19)
    sum a = (-4.983203604220967e-19,-3.8543163261878316e-17,-2.5023738825376667e-17)
    sum e = 0.0683628746463088
    sum de = 2.222614453595284e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.27e-04 |
|       force | 1.86e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.52e+00 |
+-------------+----------+
Info: cfl dt = 0.00032705931155332897 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0809e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8611875964234015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.046843701990346584, dt = 0.00032705931155332897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 353.54 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.6422164351851856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-20,-1.2165182161138213e-18,-2.882034967145874e-19)
    sum a = (2.6449311437788205e-18,-2.75573555084383e-17,-2.563172918966301e-17)
    sum e = 0.0683628745683213
    sum de = 9.75781955236954e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.28e-04 |
|       force | 1.86e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.54e+00 |
+-------------+----------+
Info: cfl dt = 0.0003278430973029212 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0445e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8580269365433968 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04717076130189991, dt = 0.0003278430973029212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.36 us    (2.2%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 348.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.126012352876853e-19,-1.2238926986110534e-18,-2.966682678634962e-19)
    sum a = (-1.1499700625125307e-19,-3.7552511968443044e-17,-2.4734892168314173e-17)
    sum e = 0.06836287454791246
    sum de = -1.7726705520137997e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.29e-04 |
|       force | 1.87e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.53e+00 |
+-------------+----------+
Info: cfl dt = 0.00032863187535028533 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0302e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8580502144330027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04749860439920284, dt = 0.00032863187535028533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 315.82 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.6511501736111105
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.749850312562653e-20,-1.2377994003761383e-18,-3.046093567463392e-19)
    sum a = (-1.839952100020049e-18,-3.127499310115459e-17,-2.401924678594203e-17)
    sum e = 0.06836287457889488
    sum de = 3.957337929572091e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.29e-04 |
|       force | 1.87e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.54e+00 |
+-------------+----------+
Info: cfl dt = 0.00032939535234765237 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9320e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8461131607659671 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.047827236274553125, dt = 0.00032939535234765237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.5%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 271.47 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.6511501736111107
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.389547158869308e-19,-1.2467741830091909e-18,-3.125016086156793e-19)
    sum a = (-3.8332335417084355e-20,-3.184518659048372e-17,-2.5584898126234247e-17)
    sum e = 0.06836287465123908
    sum de = 3.415236843329339e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.30e-04 |
|       force | 1.88e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.54e+00 |
+-------------+----------+
Info: cfl dt = 0.0003301771882036416 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0596e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8663188307144054 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.13s (niter = 3) global walltime = 297.94s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.04815663162690078, dt = 0.0003301771882036416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 301.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.6511501736111107
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-20,-1.2573773412190436e-18,-3.210152582417851e-19)
    sum a = (-3.909898212542604e-18,-2.6174396719718803e-17,-2.2010850723393946e-17)
    sum e = 0.06836287477241249
    sum de = 7.914675859144182e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.31e-04 |
|       force | 1.87e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.55e+00 |
+-------------+----------+
Info: cfl dt = 0.00033097771466435145 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0438e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8661202414886559 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04848680881510442, dt = 0.00033097771466435145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.48 us    (2.3%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 344.07 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (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.6511501736111105
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.864352565200757e-20,-1.2648922009211721e-18,-3.277313722519981e-19)
    sum a = (1.9166167708542177e-18,-2.3563605312170822e-17,-2.7171721525181506e-17)
    sum e = 0.06836287493889527
    sum de = 3.686287386450715e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.32e-04 |
|       force | 1.87e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.56e+00 |
+-------------+----------+
Info: cfl dt = 0.0003317972597687081 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0626e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.870915236249771 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04881778652976877, dt = 0.0003317972597687081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.53 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 343.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6511501736111107
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6770396744974404e-20,-1.272734607434726e-18,-3.376467939710914e-19)
    sum a = (-9.199760500100246e-19,-2.080068244843629e-17,-2.1763101127930968e-17)
    sum e = 0.06836287514669524
    sum de = 1.3010426069826053e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.32e-04 |
|       force | 1.88e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.58e+00 |
+-------------+----------+
Info: cfl dt = 0.0003323014631092473 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0017e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8643055636857739 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.13s (niter = 3) global walltime = 302.07s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.04914958378953748, dt = 0.0003323014631092473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.44 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 329.15 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.6480034722222214
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9645321901255733e-19,-1.2789767138124594e-18,-3.4396618086197984e-19)
    sum a = (-2.6832634791959046e-19,-3.208296685861782e-17,-2.5750839129271313e-17)
    sum e = 0.0683628753055996
    sum de = 2.927345865710862e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.33e-04 |
|       force | 1.88e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.60e+00 |
+-------------+----------+
Info: cfl dt = 0.0003327110966854694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0530e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8730095497950924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.049481885252646726, dt = 0.0003327110966854694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 306.42 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.6480034722222217
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229004505276208e-20,-1.291938209064574e-18,-3.530704714017233e-19)
    sum a = (-1.5332934166833741e-18,-2.2386083883577264e-17,-2.5460765648421868e-17)
    sum e = 0.06836287546727574
    sum de = 1.9895109865109006e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.33e-04 |
|       force | 1.88e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.62e+00 |
+-------------+----------+
Info: cfl dt = 0.00033314369089182687 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9179e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8545821464117875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0498145963493322, dt = 0.00033314369089182687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 306.15 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6467978395061726
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703316e-20,-1.2975065048588038e-18,-3.6163325491198096e-19)
    sum a = (-2.3382724604421455e-18,-2.779813049027686e-17,-2.0243008611910673e-17)
    sum e = 0.06836287565683061
    sum de = -9.974659986866641e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.34e-04 |
|       force | 1.89e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.65e+00 |
+-------------+----------+
Info: cfl dt = 0.00033359863171462023 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0402e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8733704570485601 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.75s (niter = 2) global walltime = 306.22s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05014774004022402, dt = 0.00033359863171462023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 330.65 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.6467978395061726
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1499700625125307e-19,-1.3075668712097231e-18,-3.6758972080267615e-19)
    sum a = (7.896461095919377e-18,-2.1896747664268545e-17,-2.234694205296111e-17)
    sum e = 0.06836287586727224
    sum de = -1.4690939437178585e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.34e-04 |
|       force | 1.89e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.67e+00 |
+-------------+----------+
Info: cfl dt = 0.0003340753444868689 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8945e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8534760535783052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.050481338671938644, dt = 0.0003340753444868689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.67 us    (2.1%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 341.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6467978395061724
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.94679828518836e-19,-1.3137434682251713e-18,-3.7532482065991293e-19)
    sum a = (3.2965808458692543e-18,-2.9548840121904007e-17,-1.9821269032136498e-17)
    sum e = 0.06836287609351953
    sum de = 1.474514954580286e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.35e-04 |
|       force | 1.89e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.69e+00 |
+-------------+----------+
Info: cfl dt = 0.00033457328408416744 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0263e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8737976987071715 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 309.00s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05081541401642551, dt = 0.00033457328408416744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 265.20 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.6467978395061724
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2218431914195637e-19,-1.3251701727037504e-18,-3.814054325318492e-19)
    sum a = (7.666467083416871e-19,-2.26064948122255e-17,-2.019345403845555e-17)
    sum e = 0.06836287632930926
    sum de = -4.662069341687669e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.35e-04 |
|       force | 1.89e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.69e+00 |
+-------------+----------+
Info: cfl dt = 0.0003350919331355276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0299e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.875624861945363 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 310.38s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05114998730050968, dt = 0.0003350919331355276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 313.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.6467978395061724
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.98942740891943e-20,-1.3315526562863802e-18,-3.883659034537905e-19)
    sum a = (5.9798443250651594e-18,-3.132171063494416e-17,-1.6070191182731212e-17)
    sum e = 0.06836287656995017
    sum de = 2.8189256484623115e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.36e-04 |
|       force | 1.89e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.69e+00 |
+-------------+----------+
Info: cfl dt = 0.00033563079998068343 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0594e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8812696875770707 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 311.75s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05148507923364521, dt = 0.00033563079998068343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 366.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6467978395061722
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,-1.3434847187025868e-18,-3.930124172736189e-19)
    sum a = (-6.133173666733497e-19,-2.7201583520348485e-17,-1.662222425816654e-17)
    sum e = 0.06836287680685542
    sum de = -7.535205098774256e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.36e-04 |
|       force | 1.90e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.70e+00 |
+-------------+----------+
Info: cfl dt = 0.0003361894164401387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0432e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8803361271007899 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 313.12s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05182071003362589, dt = 0.0003361894164401387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 266.79 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.643301504629629
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7728705130401514e-19,-1.3518090869529521e-18,-3.9859097408483872e-19)
    sum a = (-2.606598808361736e-18,-2.570123195441417e-17,-1.7897787162413804e-17)
    sum e = 0.06836287703923227
    sum de = 1.338989683019598e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.37e-04 |
|       force | 1.90e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.70e+00 |
+-------------+----------+
Info: cfl dt = 0.00033676733541729726 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9228e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8642340441064976 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 314.52s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05215689945006603, dt = 0.00033676733541729726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.28 us    (0.6%)
   gen split merge   : 1.31 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 356.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (75.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.643301504629629
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0311190234923215e-20,-1.3600960212820118e-18,-4.049272125010854e-19)
    sum a = (0,-1.5425770291671994e-17,-1.7465140849759972e-17)
    sum e = 0.06836287726116913
    sum de = 2.336455681706262e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.37e-04 |
|       force | 1.90e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.71e+00 |
+-------------+----------+
Info: cfl dt = 0.0003373641283509763 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0677e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8868994871338621 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 315.89s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05249366678548333, dt = 0.0003373641283509763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.24 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 348.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.643301504629629
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8687013515828623e-19,-1.3637458286093222e-18,-4.1070271502393033e-19)
    sum a = (-1.0733053916783619e-18,-2.1852425901442543e-17,-1.3747704726291941e-17)
    sum e = 0.06836287746852027
    sum de = 1.5937771935536915e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.38e-04 |
|       force | 1.90e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.73e+00 |
+-------------+----------+
Info: cfl dt = 0.0003379793825335407 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0490e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8857211048821885 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 317.26s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05283103091383431, dt = 0.0003379793825335407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 304.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1082784479396395e-19,-1.3723088381080116e-18,-4.1475049006123043e-19)
    sum a = (-8.433113791758558e-19,-2.235433991830999e-17,-1.0213308519929377e-17)
    sum e = 0.06836287767035334
    sum de = -5.421010862427522e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.39e-04 |
|       force | 1.90e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.75e+00 |
+-------------+----------+
Info: cfl dt = 0.00033861269832187723 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8589e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8594530606755223 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 318.68s (max_walltime = 319.68s)  [SPH][rank=0]
---------------- t = 0.05316901029636785, dt = 0.00033861269832187723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 315.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.102054643241175e-19,-1.379950037294547e-18,-4.1753875405046005e-19)
    sum a = (-5.366526958391809e-19,-2.344860830591957e-17,-9.538911441113269e-18)
    sum e = 0.06836287784547192
    sum de = -2.710505431213761e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.39e-04 |
|       force | 1.90e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.77e+00 |
+-------------+----------+
Info: cfl dt = 0.0003392636862960995 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9851e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8796133731578919 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 320.07s > 319.68s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 10):
   -> walltime = 320.067000441 >= 319.67679755700004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000010.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (54.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000010.sham                 [Shamrock Dump][rank=0]
              - took 6.03 ms, bandwidth = 2.97 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 320.067000441 -> 350.067000441

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.053507622994689724)
   -> iter = None (current = 215)
   -> walltime = 350.067000441 (current = 320.077383285)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 350.07s)      [SPH][rank=0]
---------------- t = 0.053507622994689724, dt = 0.0003392636862960995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 324.98 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.6422164351851847
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0062238046984643e-19,-1.387942179493324e-18,-4.206426347144347e-19)
    sum a = (-2.4149371312763144e-18,-2.0308950458164006e-17,-4.132232524201101e-18)
    sum e = 0.06836287799819797
    sum de = -2.894819800536297e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.40e-04 |
|       force | 1.91e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.80e+00 |
+-------------+----------+
Info: cfl dt = 0.00033993196437078036 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0106e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8850535243827827 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.90s (niter = 5) global walltime = 321.46s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05384688668098583, dt = 0.00033993196437078036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 303.84 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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 = (2.659305769560227e-19,-1.394436964839871e-18,-4.211524216033567e-19)
    sum a = (-3.87156587712552e-18,-2.6125882357706556e-17,-9.732332606533942e-18)
    sum e = 0.06836287812960155
    sum de = 5.800481622797449e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.41e-04 |
|       force | 1.91e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.83e+00 |
+-------------+----------+
Info: cfl dt = 0.0003406171548422052 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8716e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8662936785062757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.054186818645356606, dt = 0.000257625799087835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.62 us    (2.0%)
   patch tree reduce : 2.40 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 360.81 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.4024337862788112e-18,-4.247213596112589e-19)
    sum a = (4.829874262552629e-18,-2.307187332189854e-17,-7.355668577170718e-18)
    sum e = 0.06836285851340096
    sum de = 1.680513367352532e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.41e-04 |
|       force | 1.91e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.86e+00 |
+-------------+----------+
Info: cfl dt = 0.0003411491373762339 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5378e+04 | 82944 |      1 | 1.498e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6192134383833375 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 219                                                     [SPH][rank=0]
Info: time since start : 324.37107881400004 (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/dustysod_128/l2_error_0000002.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 218)
   -> walltime = 350.067000441 (current = 326.633407294)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 350.07s)      [SPH][rank=0]
---------------- t = 0.05444444444444444, dt = 0.0003411491373762339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.3%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 291.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-20,-1.4095789860080454e-18,-4.2694635164446626e-19)
    sum a = (1.303299404180868e-18,-2.8117965913913155e-17,-1.3632081310840787e-17)
    sum e = 0.06836287830975293
    sum de = 8.944667923005412e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.42e-04 |
|       force | 1.92e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.89e+00 |
+-------------+----------+
Info: cfl dt = 0.00034185629718456204 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0334e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8933495753007912 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.50s (niter = 4) global walltime = 328.01s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.054785593581820675, dt = 0.00034185629718456204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.06 us    (0.5%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 359.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.4201727857375716e-18,-4.326101856721961e-19)
    sum a = (-3.449910187537592e-19,-2.1440952238449778e-17,-5.480184842223615e-18)
    sum e = 0.0683628783670521
    sum de = 5.7462715141731735e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.43e-04 |
|       force | 1.92e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.00034258145118965547 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0434e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.896689493561676 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05512744987900524, dt = 0.00034258145118965547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.32 us    (2.4%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 325.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703317e-21,-1.4264710429972634e-18,-4.330824845972418e-19)
    sum a = (1.1116377270954463e-18,-2.2207000004050572e-17,-8.317832352907596e-18)
    sum e = 0.06836287838928622
    sum de = -6.559423143537302e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.43e-04 |
|       force | 1.92e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.92e+00 |
+-------------+----------+
Info: cfl dt = 0.0003433191138375971 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0442e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8987102565305384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.055470031330194895, dt = 0.0003433191138375971 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 315.83 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.822660950627866e-20,-1.434219864707553e-18,-4.364044467079905e-19)
    sum a = (-2.491601802110483e-18,-2.2227064585870453e-17,-1.0822242435850048e-17)
    sum e = 0.06836287838416082
    sum de = 7.589415207398531e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.44e-04 |
|       force | 1.92e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.00034352928603634557 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0263e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8979738643089931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05581335044403249, dt = 0.00034352928603634557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 313.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156193867210995e-20,-1.4419733656580058e-18,-4.404798699168447e-19)
    sum a = (-4.13989222504511e-18,-2.52714905378242e-17,-1.3105963648347062e-17)
    sum e = 0.06836287820408887
    sum de = -6.451002926288751e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.44e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.00034377040831782326 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0089e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8959413341224991 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.13s (niter = 3) global walltime = 333.51s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05615687973006883, dt = 0.00034377040831782326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.80 us    (1.0%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 271.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0665868333667484e-19,-1.4509341105705689e-18,-4.453706320743052e-19)
    sum a = (4.216556895879279e-19,-2.0781216809357302e-17,-1.1050546082484565e-17)
    sum e = 0.06836287798279607
    sum de = -1.2414114874959026e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.44e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.94e+00 |
+-------------+----------+
Info: cfl dt = 0.0003440411418790639 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7713e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8611114497173333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.056500650138386656, dt = 0.0003440411418790639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.4%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 282.28 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5812088359547295e-19,-1.457602027803155e-18,-4.488222092423902e-19)
    sum a = (-7.05314971674352e-18,-2.1630817087312524e-17,-1.2591371375932527e-17)
    sum e = 0.0683628777308714
    sum de = 8.72782748850831e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.44e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.94e+00 |
+-------------+----------+
Info: cfl dt = 0.000344340224023849 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0320e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9007162898148442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05684469128026572, dt = 0.000344340224023849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.4%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 284.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-20,-1.465130925225773e-18,-4.534738705760802e-19)
    sum a = (2.031613777105471e-18,-1.8451329547287645e-17,-1.4038585467935416e-17)
    sum e = 0.068362877444164
    sum de = -2.5478751053409354e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.45e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.0003446664135322811 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0288e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9010245091910626 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 337.71s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05718903150428957, dt = 0.0003446664135322811 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 278.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.461420287776341e-19,-1.4707974850634305e-18,-4.585702481806984e-19)
    sum a = (5.289862287557641e-18,-2.2898179927039874e-17,-1.7503618129323546e-17)
    sum e = 0.06836287713576591
    sum de = 1.6371452804531117e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.45e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.0003450184925295489 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0314e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9022620923567616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05753369791782185, dt = 0.0003450184925295489 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.27 us    (2.4%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 312.84 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 8.41 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.156193867210995e-20,-1.4792809474793453e-18,-4.651624808332374e-19)
    sum a = (-5.8265149833968216e-18,-2.4264368319014397e-17,-1.2230241644229742e-17)
    sum e = 0.06836287680164504
    sum de = 9.107298248878237e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.45e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.00034539187856493783 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0129e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9004221233987387 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 340.46s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.057878716410351395, dt = 0.00034539187856493783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 352.24 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.906044179773648e-20,-1.4880358058247267e-18,-4.683946677952744e-19)
    sum a = (3.0665868333667484e-19,-2.3179383543888643e-17,-1.179536294971641e-17)
    sum e = 0.06836287644632645
    sum de = 6.071532165918825e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.46e-04 |
|       force | 1.93e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.0003457884519273133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9216e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8876994623017131 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 341.86s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05822410828891633, dt = 0.0003457884519273133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 263.96 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.4960279480235036e-18,-4.724935608090235e-19)
    sum a = (2.798260485447158e-18,-1.9940301201145014e-17,-1.439542722103059e-17)
    sum e = 0.0683628760630997
    sum de = -1.723881454251952e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.46e-04 |
|       force | 1.94e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.93e+00 |
+-------------+----------+
Info: cfl dt = 0.000346207435939661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9881e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8987114253743064 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 343.25s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05856989674084365, dt = 0.000346207435939661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 334.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156193867210995e-19,-1.5022372997200943e-18,-4.780315583754327e-19)
    sum a = (-8.049790437587714e-19,-2.5575753450197306e-17,-1.8168348923642925e-17)
    sum e = 0.06836287565466238
    sum de = 1.3552527156068805e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.47e-04 |
|       force | 1.94e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.94e+00 |
+-------------+----------+
Info: cfl dt = 0.00034664773456662986 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9328e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8914902776732216 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 344.65s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05891610417678331, dt = 0.00034664773456662986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 268.00 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8749251562813265e-19,-1.512283628350524e-18,-4.850274557415285e-19)
    sum a = (-5.596520970894316e-18,-1.389307581772951e-17,-1.7291750038057823e-17)
    sum e = 0.06836287521795416
    sum de = -1.0191500421363742e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.47e-04 |
|       force | 1.94e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.95e+00 |
+-------------+----------+
Info: cfl dt = 0.0003471082794301398 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0278e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9069167783723466 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 346.03s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.059262751911349935, dt = 0.0003471082794301398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 308.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7072211888315826e-19,-1.5150022668853538e-18,-4.907400310526754e-19)
    sum a = (-1.1499700625125306e-18,-2.1079640030006712e-17,-1.930288747806753e-17)
    sum e = 0.0683628747715977
    sum de = 2.9815559743351372e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.48e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.97e+00 |
+-------------+----------+
Info: cfl dt = 0.00034756047554653223 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0123e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9057809192640429 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 347.41s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.05960986019078007, dt = 0.00034756047554653223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.60 us   (3.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 274.28 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0843207383039619e-19,-1.523668219667634e-18,-4.97892397543516e-19)
    sum a = (1.5716257521004586e-18,-1.4214708069588484e-17,-1.2705849709112477e-17)
    sum e = 0.0683628743080859
    sum de = 3.957337929572091e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.47e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.96e+00 |
+-------------+----------+
Info: cfl dt = 0.0003468108831778811 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0325e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9100053891218989 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 348.78s (max_walltime = 350.07s)  [SPH][rank=0]
---------------- t = 0.0599574206663266, dt = 0.0003468108831778811 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 271.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.708158697989762e-20,-1.5272852723138018e-18,-5.010845315650028e-19)
    sum a = (-1.161469763137656e-17,-1.4332550053858973e-17,-1.8928395138799922e-17)
    sum e = 0.06836287354248458
    sum de = 3.63207727782644e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.46e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.96e+00 |
+-------------+----------+
Info: cfl dt = 0.0003461138339956223 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0314e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9078771022223976 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 350.16s > 350.07s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 11):
   -> walltime = 350.158833436 >= 350.067000441
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000011.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (56.7%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000011.sham                 [Shamrock Dump][rank=0]
              - took 6.05 ms, bandwidth = 2.96 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 350.158833436 -> 380.158833436

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.06030423154950448)
   -> iter = None (current = 235)
   -> walltime = 380.158833436 (current = 350.169369327)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 380.16s)      [SPH][rank=0]
---------------- t = 0.06030423154950448, dt = 0.0003461138339956223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 313.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.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.532151682083549e-18,-5.086723318999511e-19)
    sum a = (-5.213197616723472e-18,-1.259679527379347e-17,-1.4965202746286982e-17)
    sum e = 0.06836287279821009
    sum de = -2.168404344971009e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.96e+00 |
+-------------+----------+
Info: cfl dt = 0.0003491267717678929 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9927e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9002350993037517 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.93s (niter = 5) global walltime = 351.55s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06065034538350011, dt = 0.0003491267717678929 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.23 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 322.37 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.642216435185185
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.796828222675829e-19,-1.5365361301164844e-18,-5.133086918995788e-19)
    sum a = (4.216556895879279e-19,-1.2237963062636912e-17,-1.0435807102647728e-17)
    sum e = 0.06836287295750247
    sum de = -3.2526065174565133e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.41e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.97e+00 |
+-------------+----------+
Info: cfl dt = 0.00034139167437293 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8796e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8909366138988238 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.060999472155268, dt = 0.00034139167437293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.06 us    (2.2%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 338.28 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.5406070690584844e-18,-5.159327813414915e-19)
    sum a = (1.303299404180868e-18,-8.70815952855253e-18,-1.173645289529212e-17)
    sum e = 0.06836287056068709
    sum de = 9.378348791999613e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.43e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.98e+00 |
+-------------+----------+
Info: cfl dt = 0.00034308249937362164 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9935e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8880759021127486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06134086382964093, dt = 0.00034308249937362164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.13 us    (2.3%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 331.74 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229004505276208e-20,-1.542656576249974e-18,-5.201179987144168e-19)
    sum a = (-5.0598682750551345e-18,-4.682347178686682e-18,-1.4943457643486602e-17)
    sum e = 0.06836287044339423
    sum de = -9.974659986866641e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.45e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.99e+00 |
+-------------+----------+
Info: cfl dt = 0.00034485011833822855 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9983e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8931864210322668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06168394632901455, dt = 0.00034485011833822855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 315.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1499700625125307e-19,-1.5436953675662084e-18,-5.258939723569122e-19)
    sum a = (-5.749850312562653e-18,-1.3093412390796155e-17,-1.3465571318163866e-17)
    sum e = 0.06836287032107874
    sum de = 3.7947076036992655e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.47e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.99e+00 |
+-------------+----------+
Info: cfl dt = 0.0003466971057336663 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0157e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9003934264612701 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06202879644735278, dt = 0.0003466971057336663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.38 us    (2.2%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 319.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.64111930941358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.426889987060094e-20,-1.5496473610538222e-18,-5.30331644845527e-19)
    sum a = (2.261607789607977e-18,-8.281057203414615e-18,-1.3658465457157675e-17)
    sum e = 0.06836287026970614
    sum de = -3.0899761915836876e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 1.95e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.99e+00 |
+-------------+----------+
Info: cfl dt = 0.00034862421648121746 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0196e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9058037310812166 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.16s (niter = 3) global walltime = 358.49s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06237549355308644, dt = 0.00034862421648121746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 299.55 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.6378641010802468
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-21,-1.55176705684776e-18,-5.352016198643201e-19)
    sum a = (2.3382724604421455e-18,-1.1824776797744408e-17,-1.1001470925301044e-17)
    sum e = 0.06836287026383936
    sum de = -6.559423143537302e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 1.96e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 3.99e+00 |
+-------------+----------+
Info: cfl dt = 0.00035063227485572084 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0126e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9097798493327699 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06272411776956766, dt = 0.00035063227485572084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 330.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6354528356481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-20,-1.5564041838495094e-18,-5.38576822309302e-19)
    sum a = (-5.481523964643063e-18,-1.4316528335540114e-17,-1.0317532082092259e-17)
    sum e = 0.0683628703114243
    sum de = -1.0570971181733668e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 1.96e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.00e+00 |
+-------------+----------+
Info: cfl dt = 0.00035059789352845106 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9096e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8993454782278565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06307475004442338, dt = 0.00035059789352845106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.87 us    (2.6%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 275.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.6333912037037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-19,-1.5620239512855346e-18,-5.419508014996852e-19)
    sum a = (-2.721595814612989e-18,-1.0644410391131612e-17,-1.1618288662007416e-17)
    sum e = 0.06836286992785802
    sum de = 2.0599841277224584e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.43e-04 |
|       force | 1.96e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.01e+00 |
+-------------+----------+
Info: cfl dt = 0.00034272658620811575 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8769e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8942846058262625 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 362.69s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06342534793795183, dt = 0.00034272658620811575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 275.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6333912037037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7311788984672605e-19,-1.5649952687891782e-18,-5.462238491132715e-19)
    sum a = (1.76328742918588e-18,-1.30018490192823e-17,-1.3725842967657221e-17)
    sum e = 0.06836286784825792
    sum de = -1.6263032587282567e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.44e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.02e+00 |
+-------------+----------+
Info: cfl dt = 0.0003444054122262012 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0652e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9022177493116085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06376807452415995, dt = 0.0003444054122262012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 35.29 us   (9.2%)
   patch tree reduce : 2.45 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 331.85 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.6333912037037037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.378037058630559e-19,-1.5695622071884792e-18,-5.51283710837262e-19)
    sum a = (2.4149371312763144e-18,-7.121578924890426e-18,-6.050709537379337e-18)
    sum e = 0.06836286795122416
    sum de = 5.2583805365546965e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.46e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.01e+00 |
+-------------+----------+
Info: cfl dt = 0.0003461608456695255 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9982e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8966225800225782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06411247993638615, dt = 0.0003461608456695255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 317.50 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.611390350288872e-19,-1.571204620485769e-18,-5.52094194720949e-19)
    sum a = (-3.986562883376773e-18,-3.6534009837556295e-18,-1.3046492412640274e-17)
    sum e = 0.06836286810688326
    sum de = -4.174178364069192e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.48e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.01e+00 |
+-------------+----------+
Info: cfl dt = 0.0003479954638905871 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9538e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8945145729959306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.78s (niter = 2) global walltime = 366.84s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06445864078205567, dt = 0.0003479954638905871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 329.28 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.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.5719813743528631e-18,-5.578132348132076e-19)
    sum a = (-5.0598682750551345e-18,-3.741595302351968e-18,-1.4153293579068187e-17)
    sum e = 0.06836286831856662
    sum de = 3.3068166260807885e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.01e+00 |
+-------------+----------+
Info: cfl dt = 0.00034991004158120114 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0172e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9088357184589291 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06480663624594625, dt = 0.00034991004158120114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 297.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406634e-20,-1.5728095998617527e-18,-5.629187175878336e-19)
    sum a = (-1.954949106271302e-18,-1.7923361521191397e-18,-1.267742957067181e-17)
    sum e = 0.06836286858730338
    sum de = -1.0733601507606494e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.01e+00 |
+-------------+----------+
Info: cfl dt = 0.00035190541480712074 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8387e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8867286145576567 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 369.64s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06515654628752746, dt = 0.00035190541480712074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 306.27 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6333912037037035
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.426889987060094e-20,-1.5736331461304791e-18,-5.671086845231888e-19)
    sum a = (-2.1082784479396394e-18,7.918023034591487e-19,-1.156839093042381e-17)
    sum e = 0.06836286891330583
    sum de = 7.806255641895632e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.02e+00 |
+-------------+----------+
Info: cfl dt = 0.0003539824013848405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8992e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9010279947948339 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 371.05s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06550845170233457, dt = 0.0003539824013848405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 311.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (77.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.89359657037672e-19,-1.5729827317477918e-18,-5.711203280086955e-19)
    sum a = (-4.983203604220966e-18,-2.305929552433981e-19,-1.3425685925890613e-17)
    sum e = 0.06836286929588617
    sum de = 2.3852447794681098e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.03e+00 |
+-------------+----------+
Info: cfl dt = 0.0003510560965209303 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9586e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9154632340357457 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 372.44s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06586243410371942, dt = 0.0003510560965209303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 333.15 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.103929661557534e-20,-1.5732307314764424e-18,-5.761952714852305e-19)
    sum a = (-4.983203604220967e-19,-6.309562303926174e-18,-7.11757326756537e-18)
    sum e = 0.06836286860845636
    sum de = -6.396792817664476e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.04e+00 |
+-------------+----------+
Info: cfl dt = 0.00035296605227350494 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9238e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9025980489009479 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 373.84s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06621349020024035, dt = 0.00035296605227350494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6770396744974405e-19,-1.5764032563071044e-18,-5.775273176541621e-19)
    sum a = (2.568266472944652e-18,-8.997018382308323e-18,-9.01413189543615e-18)
    sum e = 0.06836286902070737
    sum de = -6.451002926288751e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003530497232113655 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9130e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9058488361764223 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 375.24s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06656645625251385, dt = 0.0003530497232113655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 324.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.64209587191358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6832634791959046e-19,-1.5798471770672331e-18,-5.810591861031275e-19)
    sum a = (-5.519856300060147e-18,-8.397776170045933e-18,-8.318916691463261e-18)
    sum e = 0.06836286905997699
    sum de = -2.3852447794681098e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 1.97e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035243177206558144 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9840e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9169552620445933 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 376.63s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06691950597572521, dt = 0.00035243177206558144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.68 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 352.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.64209587191358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.684200988354084e-19,-1.5829214378544675e-18,-5.837595896308797e-19)
    sum a = (1.2649670687637836e-18,-6.550636757135181e-18,-1.5291505184680157e-17)
    sum e = 0.06836286896907538
    sum de = 1.0842021724855044e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035306050707713233 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0048e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9185211419164361 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 378.01s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06727193774779079, dt = 0.00035306050707713233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.81 us    (0.8%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 329.52 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6420958719135799
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.994713704459715e-19,-1.5848071716402445e-18,-5.903988847745981e-19)
    sum a = (4.2548892312963635e-18,-8.031223212620064e-18,-1.2285947542031712e-17)
    sum e = 0.06836286917415517
    sum de = 3.3068166260807885e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003561294134610447 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9059e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9050100055838449 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 379.42s (max_walltime = 380.16s)  [SPH][rank=0]
---------------- t = 0.06762499825486792, dt = 0.0003561294134610447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.22 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 356.59 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.64209587191358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6061040547485865e-19,-1.5875913195373594e-18,-5.942297066120181e-19)
    sum a = (-2.2999401250250614e-19,-5.7474545415990856e-18,-9.89328126517657e-18)
    sum e = 0.06836286994126393
    sum de = 1.734723475976807e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035653524979247143 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0020e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9277344659355871 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 380.80s > 380.16s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 12):
   -> walltime = 380.802148612 >= 380.158833436
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000012.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (56.2%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000012.sham                 [Shamrock Dump][rank=0]
              - took 7.81 ms, bandwidth = 2.30 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 380.802148612 -> 410.802148612

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.06798112766832896)
   -> iter = None (current = 257)
   -> walltime = 410.802148612 (current = 380.81429873800005)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 410.80s)      [SPH][rank=0]
---------------- t = 0.06798112766832896, dt = 0.00035653524979247143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.19 us   (9.7%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 276.03 us  (85.5%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.64209587191358
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.372750763090274e-19,-1.5896221097681962e-18,-5.974354960942691e-19)
    sum a = (-1.1116377270954463e-18,-1.1781203713344519e-17,-1.0945733991694029e-17)
    sum e = 0.06836287013100008
    sum de = -3.903127820947816e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00035241557081594103 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8581e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9065192267737225 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.08s (niter = 5) global walltime = 382.23s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.06833766291812143, dt = 0.00035241557081594103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 332.38 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.5947084438256143e-18,-6.01460952239915e-19)
    sum a = (1.2266347333466993e-18,-2.608395636584412e-19,-6.161787599183098e-18)
    sum e = 0.06836286931735018
    sum de = -6.342582709040201e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00035430493267836504 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9875e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9158335156445075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06869007848893738, dt = 0.00035430493267836504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.6%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.37 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406634e-20,-1.5931315398906099e-18,-6.027749687198686e-19)
    sum a = (-6.938152710492268e-18,-6.217025650458368e-19,-6.7469979328194596e-18)
    sum e = 0.06836286984466308
    sum de = 7.589415207398531e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003558322988365418 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9968e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9221814873855094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06904438342161574, dt = 0.0003558322988365418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.10 us    (2.7%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 277.99 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6418547453703698
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4436863828391274e-19,-1.5930987852094673e-18,-6.05311154940538e-19)
    sum a = (-1.76328742918588e-18,-8.68197450059916e-18,-9.214589332689352e-18)
    sum e = 0.06836287029493683
    sum de = -1.610040226140974e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003551893938599441 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9372e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9169500353980252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06940021572045228, dt = 0.0003551893938599441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.6%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 285.12 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.6418547453703698
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.906044179773648e-19,-1.5980915344636213e-18,-6.0902747602333955e-19)
    sum a = (6.899820375075184e-18,2.050480473443567e-18,-1.0825604182589683e-17)
    sum e = 0.0683628702537243
    sum de = -1.5504091066542713e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035459510335765016 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0203e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9281092972900203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06975540511431223, dt = 0.00035459510335765016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.6%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 278.27 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.6418547453703698
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.360303153693346e-19,-1.5949704812747547e-18,-6.1313393047341305e-19)
    sum a = (2.606598808361736e-18,-1.7201635518416603e-18,-8.073139574115623e-18)
    sum e = 0.06836287021452207
    sum de = -4.933119884809045e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.000354048385182459 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8196e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8956678450164488 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 389.20s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07011000021766989, dt = 0.000354048385182459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 269.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.851904955803828e-19,-1.596261951559803e-18,-6.1553027607127445e-19)
    sum a = (-2.5299341375275673e-18,1.7932345662304774e-18,-6.161187144976886e-18)
    sum e = 0.06836287017379795
    sum de = -7.101524229780054e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003526243200455731 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9277e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9108975721845093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07046404860285235, dt = 0.0003526243200455731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.3%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 320.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (81.5%)
Warning: High interface/patch volume ratio.                                  [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 = (-2.395770963567772e-19,-1.5950968207591616e-18,-6.173975543765896e-19)
    sum a = (-2.1466107833567237e-18,-1.5623421396166335e-18,-1.2676969409422604e-17)
    sum e = 0.06836286992045615
    sum de = 1.588356182691264e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.000354399056443991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0195e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9212726505356957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07081667292289792, dt = 0.000354399056443991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.4%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.49 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.935288184949611e-19,-1.5963602156032305e-18,-6.22990744535634e-19)
    sum a = (-2.7599281500300737e-18,5.2697977057377605e-18,-1.0065467595150933e-17)
    sum e = 0.06836287036713257
    sum de = 7.968885967768458e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.00035624969678195803 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9964e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9223681120543281 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.18s (niter = 3) global walltime = 393.37s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07117107197934192, dt = 0.00035624969678195803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 323.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0124476093969286e-19,-1.5932485208946903e-18,-6.261071541240822e-19)
    sum a = (-2.031613777105471e-18,1.3062941178853277e-18,-5.162188621248657e-18)
    sum e = 0.06836287081405316
    sum de = -2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.14e+00 |
+-------------+----------+
Info: cfl dt = 0.00035800152978238906 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0130e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9297418445678567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07152732167612387, dt = 0.00035800152978238906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.0%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 342.14 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.103929661557534e-20,-1.5936088223872582e-18,-6.271029187267916e-19)
    sum a = (4.484883243798869e-18,3.354977763106219e-18,-7.168755603630102e-18)
    sum e = 0.06836287121514165
    sum de = 1.111307226797642e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 1.98e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.15e+00 |
+-------------+----------+
Info: cfl dt = 0.0003587840813514704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0149e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9346042602407237 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07188532320590627, dt = 0.0003587840813514704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 316.51 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1082784479396395e-19,-1.5920506354129064e-18,-6.30027876067326e-19)
    sum a = (3.449910187537592e-19,-5.207208189314553e-18,-5.125500588747716e-18)
    sum e = 0.06836287136968908
    sum de = -7.318364664277155e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.16e+00 |
+-------------+----------+
Info: cfl dt = 0.00035900903755373625 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0134e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9364150683995822 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.78s (niter = 2) global walltime = 397.51s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07224410728725773, dt = 0.00035900903755373625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6407696759259256
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0728106380652126e-19,-1.5952605941648742e-18,-6.314830919410227e-19)
    sum a = (5.788182647979738e-18,-1.840251571390495e-18,-6.991712472490057e-18)
    sum e = 0.0683628713704484
    sum de = 9.486769009248164e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.15e+00 |
+-------------+----------+
Info: cfl dt = 0.0003524517442034347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8862e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9171929157012381 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07260311632481146, dt = 0.0003524517442034347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 280.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6383584104938267
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.870576369899221e-19,-1.595190405562426e-18,-6.342908805782971e-19)
    sum a = (-3.449910187537592e-19,-1.134996493990232e-19,-1.1863005639366964e-17)
    sum e = 0.06836286981036639
    sum de = -3.469446951953614e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.14e+00 |
+-------------+----------+
Info: cfl dt = 0.0003541689733845169 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9535e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9107368697004257 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 400.31s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.0729555680690149, dt = 0.0003541689733845169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.17 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 353.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6372733410493823
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-19,-1.5952746318853638e-18,-6.393621266803781e-19)
    sum a = (7.934793431336462e-18,7.019309451883127e-18,-8.654187281780844e-18)
    sum e = 0.06836287009593794
    sum de = -1.7726705520137997e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.14e+00 |
+-------------+----------+
Info: cfl dt = 0.0003559614849450177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0038e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9228979967539788 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 401.70s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07330973704239942, dt = 0.0003559614849450177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.35 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 318.61 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6338975694444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.779094317738616e-19,-1.5914750888728306e-18,-6.418778613204231e-19)
    sum a = (3.1432515042009172e-18,6.282310409215591e-18,-9.026682879590945e-18)
    sum e = 0.06836287037218218
    sum de = -1.2197274440461925e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.14e+00 |
+-------------+----------+
Info: cfl dt = 0.0003578312039362929 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0150e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.929293898037739 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 403.08s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07366569852734443, dt = 0.0003578312039362929 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 272.37 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4978256068089474e-19,-1.5890886763895893e-18,-6.45188736323404e-19)
    sum a = (-1.0733053916783619e-18,2.7823885028135215e-18,-5.448460979676984e-18)
    sum e = 0.06836287063879051
    sum de = -1.1546753136970622e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.15e+00 |
+-------------+----------+
Info: cfl dt = 0.00035890044069080795 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7345e+04 | 82944 |      1 | 1.446e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8906168165183231 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 404.52s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07402352973128072, dt = 0.00035890044069080795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 288.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-1.5887236956568583e-18,-6.4647547526403575e-19)
    sum a = (-7.283143729246027e-19,1.639306281821248e-18,-6.26302135939543e-18)
    sum e = 0.06836287069410658
    sum de = 4.336808689942018e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003597086082641898 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0203e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9378037903709566 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 405.90s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07438243017197153, dt = 0.0003597086082641898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 310.80 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0124476093969286e-19,-1.5883399979634743e-18,-6.4888308420742445e-19)
    sum a = (-3.1432515042009172e-18,1.105049356945635e-18,-4.4302048848884364e-18)
    sum e = 0.06836287065882958
    sum de = 8.131516293641283e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003517789987205324 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9430e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9278457761982494 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 407.30s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07474213878023572, dt = 0.0003517789987205324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.94 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.86 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.20410928648235e-19,-1.5881341113962928e-18,-6.501185754500743e-19)
    sum a = (1.1499700625125307e-19,-1.9420718373421253e-18,-9.124734948459272e-18)
    sum e = 0.06836286865970262
    sum de = 1.0516761073109393e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003534533056631713 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0002e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9161240484790362 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 408.68s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07509391777895626, dt = 0.0003534533056631713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 302.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.82 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.78531812243708e-19,-1.5889202237437133e-18,-6.541606467757786e-19)
    sum a = (3.449910187537592e-18,1.103252528722959e-18,-6.0039816455574984e-18)
    sum e = 0.06836286877592403
    sum de = -1.4094628242311558e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035520477938833785 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0070e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9215249654100157 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 410.06s (max_walltime = 410.80s)  [SPH][rank=0]
---------------- t = 0.07544737108461942, dt = 0.00035520477938833785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 309.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.5884710166880445e-18,-6.557821727754387e-19)
    sum a = (1.6866227583517116e-18,4.1165334581503245e-18,-3.288332909812669e-18)
    sum e = 0.06836286888570232
    sum de = 2.1141942363467336e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003570359759392592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8680e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9046616480208002 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 411.48s > 410.80s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 13):
   -> walltime = 411.47829532500003 >= 410.802148612
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000013.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (53.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000013.sham                 [Shamrock Dump][rank=0]
              - took 6.06 ms, bandwidth = 2.96 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 411.47829532500003 -> 441.47829532500003

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.07580257586400777)
   -> iter = None (current = 279)
   -> walltime = 441.47829532500003 (current = 411.48882135300005)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 441.48s)      [SPH][rank=0]
---------------- t = 0.07580257586400777, dt = 0.0003570359759392592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 320.01 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.18 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.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.5862156229293732e-18,-6.56436208040457e-19)
    sum a = (3.8332335417084353e-19,2.9896226911621337e-18,-5.6816105315270334e-18)
    sum e = 0.06836286899179532
    sum de = -1.951563910473908e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003589476172629282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9124e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9161999114743914 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.02s (niter = 5) global walltime = 412.89s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.07615961183994703, dt = 0.0003589476172629282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 299.91 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4978256068089474e-19,-1.5854295105819525e-18,-6.588971528520462e-19)
    sum a = (1.4566287458492054e-18,2.9186479763664384e-18,-3.043470067510113e-18)
    sum e = 0.0683628690935909
    sum de = -6.667843360785852e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.000358834675280481 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8711e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9146840030780234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07651855945720996, dt = 0.000358834675280481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.36 us    (2.1%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-1.5845685303919204e-18,-6.595582174912537e-19)
    sum a = (-2.491601802110483e-18,-3.0239121630781975e-18,-6.075920805152163e-18)
    sum e = 0.06836286874101741
    sum de = 3.957337929572091e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003502596057625654 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9386e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9249051788041273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07687739413249045, dt = 0.0003502596057625654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.23 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 359.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.5865525282211248e-18,-6.621781848946387e-19)
    sum a = (-6.324835343818918e-18,-2.785682687888427e-18,-1.7471190066772127e-18)
    sum e = 0.06836286658644013
    sum de = -3.5236570605778894e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035183544461019084 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0152e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9144396252270967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07722765373825302, dt = 0.00035183544461019084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 309.25 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.6329210069444442
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271089e-21,-1.5877036213012766e-18,-6.620212020424114e-19)
    sum a = (-8.203119779256051e-18,-1.2211993279731049e-17,-4.772798344150109e-19)
    sum e = 0.06836286660127813
    sum de = 1.984089975648473e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035348690071843286 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8807e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.898022520613933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07757948918286321, dt = 0.00035348690071843286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.80 us    (2.5%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 320.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.647795669321478e-19,-1.5935807469462789e-18,-6.619677687596917e-19)
    sum a = (-4.676544920884291e-18,-1.2035155435482704e-17,1.1925392939694172e-19)
    sum e = 0.06836286662277444
    sum de = -7.047314121155779e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 1.99e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035521664339052526 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9219e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9085619697141115 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 419.90s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.07793297608358164, dt = 0.00035521664339052526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.21 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 338.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6329210069444444
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.018671414095393e-19,-1.5981196099046006e-18,-6.618341745049881e-19)
    sum a = (-9.659748525105258e-18,-8.750703180116511e-18,-1.1910711002179018e-19)
    sum e = 0.06836286665616106
    sum de = -1.734723475976807e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003570254524006497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8359e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8997385090062303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07828819272697217, dt = 0.0003570254524006497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.88 us    (2.4%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 300.37 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6329210069444446
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6832634791959046e-19,-1.6003094943009867e-18,-6.619230495819241e-19)
    sum a = (-6.133173666733497e-19,-1.2082022704957498e-17,8.1744456397374325e-19)
    sum e = 0.06836286670470476
    sum de = -8.40256683676266e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.000348524840905163 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0069e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9308193758847074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07864521817937282, dt = 0.000348524840905163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 319.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (21.1%)
Warning: High interface/patch volume ratio.                                  [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 = (-9.583083854271089e-21,-1.6049325835822465e-18,-6.614332089429989e-19)
    sum a = (1.3799640750150368e-18,-9.38206369685923e-18,4.089354832738606e-18)
    sum e = 0.06836286464944753
    sum de = 2.656295322589486e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.00035006044589420895 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9876e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9057441046663367 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 424.09s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.07899374302027799, dt = 0.00035006044589420895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 309.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-1.6077682031211568e-18,-6.594391567456536e-19)
    sum a = (-7.896461095919377e-18,-6.860889096917208e-18,5.166431905349867e-18)
    sum e = 0.06836286466806939
    sum de = 3.848917712323541e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003516736488677561 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9007e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.896523567300213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0793438034661722, dt = 0.0003516736488677561 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.9%)
   patch tree reduce : 2.41 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 373.90 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.779094317738616e-19,-1.6100797477617866e-18,-6.574556148462099e-19)
    sum a = (-1.839952100020049e-18,-1.2130686802654969e-17,1.2967505170310384e-18)
    sum e = 0.06836286470770907
    sum de = -7.697835424647081e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035336732009366804 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0036e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9163618044846567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07969547711503996, dt = 0.00035336732009366804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 309.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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 = (1.389547158869308e-19,-1.6151333271380623e-18,-6.576263421024643e-19)
    sum a = (1.4566287458492054e-18,-1.1617392873710573e-17,-3.7061494392443035e-19)
    sum e = 0.06836286477422211
    sum de = 2.6020852139652106e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035514238070451037 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8368e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8951933496697994 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.80s (niter = 2) global walltime = 428.30s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.08004884443513363, dt = 0.00035514238070451037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 305.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.587432640653194e-19,-1.6188299268670048e-18,-6.581234539568304e-19)
    sum a = (-2.4532694666933987e-18,-9.024270277018905e-18,1.592113256709028e-19)
    sum e = 0.06836286487065081
    sum de = -1.1492543028346347e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035699983619572783 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9945e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9240087421918377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08040398681583814, dt = 0.00035699983619572783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 316.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-20,-1.6214783767993863e-18,-6.58007446647611e-19)
    sum a = (-4.791541927135544e-18,-9.914898132725225e-18,-9.694086539191869e-19)
    sum e = 0.06836286499951082
    sum de = 5.583641188300348e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003589406766098706 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9768e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9260981109658096 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 431.07s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.08076098665203388, dt = 0.0003589406766098706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 322.85 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3478555442964167e-19,-1.6257552023085679e-18,-6.585567621380429e-19)
    sum a = (-1.2266347333466993e-18,-1.3874134253548803e-17,-6.951179007671408e-19)
    sum e = 0.06836286516326898
    sum de = -2.2985086056692694e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.00034930770751816085 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9564e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.927950930154638 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 432.47s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.08111992732864375, dt = 0.00034930770751816085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 285.32 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.647795669321478e-19,-1.6313234981027976e-18,-6.58710347789411e-19)
    sum a = (7.398140735497281e-18,-6.6211248309539014e-18,7.754657609657032e-19)
    sum e = 0.06836286307063515
    sum de = 2.6020852139652106e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003508592600811109 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9467e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9015767747669504 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 433.86s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.08146923503616191, dt = 0.00019743163050475743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 307.03 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (55.0%)
Warning: High interface/patch volume ratio.                                  [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 = (2.252024705753706e-19,-1.6313796489847563e-18,-6.58284595318981e-19)
    sum a = (-1.801619764602965e-18,-7.795988451134753e-18,4.581652326784757e-19)
    sum e = 0.06836284000906653
    sum de = 1.6263032587282567e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035178638133334894 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0157e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5154927911578739 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 435.24s (max_walltime = 441.48s)  [SPH][rank=0]
Info: iteration since start : 297                                                     [SPH][rank=0]
Info: time since start : 435.24141024200003 (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/dustysod_128/l2_error_0000003.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 296)
   -> walltime = 441.47829532500003 (current = 437.52687768100003)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 441.48s)      [SPH][rank=0]
---------------- t = 0.08166666666666667, dt = 0.00035178638133334894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 303.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.633859646271262e-18,-6.581050165099888e-19)
    sum a = (-8.241452114673136e-18,-6.843435531108403e-18,-8.618970152870242e-20)
    sum e = 0.06836286333390183
    sum de = -2.3852447794681098e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003534407371343013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8995e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9007664597518509 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 438.93s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.08201845304800001, dt = 0.0003534407371343013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 288.25 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.636320926597115e-18,-6.583133161814636e-19)
    sum a = (1.76328742918588e-18,-7.79531464055125e-18,4.434866187304684e-18)
    sum e = 0.06836286350973261
    sum de = -2.8731357570865868e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003551983854667347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9500e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9127524940326707 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 440.33s (max_walltime = 441.48s)  [SPH][rank=0]
---------------- t = 0.0823718937851343, dt = 0.0003551983854667347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 276.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.6418547453703705
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.6391659046163515e-18,-6.55894958533839e-19)
    sum a = (-5.3281946229747256e-18,-5.7681929340024686e-18,4.827388600599882e-18)
    sum e = 0.06836286373719686
    sum de = 7.047314121155779e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003570375592475991 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9799e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9218945140652729 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 441.72s > 441.48s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 14):
   -> walltime = 441.717093845 >= 441.47829532500003
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000014.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (53.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000014.sham                 [Shamrock Dump][rank=0]
              - took 6.25 ms, bandwidth = 2.87 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 441.717093845 -> 471.717093845

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.08272709217060104)
   -> iter = None (current = 299)
   -> walltime = 471.717093845 (current = 441.73034037400004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 471.72s)      [SPH][rank=0]
---------------- t = 0.08272709217060104, dt = 0.0003570375592475991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.87 us    (1.5%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 301.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703707
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,-1.6411592609258825e-18,-6.540694185092782e-19)
    sum a = (-4.216556895879279e-18,-2.1656646493013487e-18,3.0956763298862403e-18)
    sum e = 0.06836286400561652
    sum de = 1.4582519219930035e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035896044098487613 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9076e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9154730313872343 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.02s (niter = 5) global walltime = 443.14s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08308412972984863, dt = 0.00035896044098487613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 308.74 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6394434799382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5332934166833742e-19,-1.640953374358701e-18,-6.533267564562363e-19)
    sum a = (-1.1461368289708221e-17,-4.6928848275342495e-18,1.97578777222865e-18)
    sum e = 0.06836286431284885
    sum de = -5.908901840045999e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.000352443861071558 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9548e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9277507406511082 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08344309017083351, dt = 0.000352443861071558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.30 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 362.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604939
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6353480599245493e-19,-1.6431339002747608e-18,-6.527713028492701e-19)
    sum a = (4.446550908381785e-18,-3.999739623676396e-18,3.665365880709349e-18)
    sum e = 0.06836286300393488
    sum de = -1.3010426069826053e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003541021663114601 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8631e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8968878012876702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08379553403190507, dt = 0.0003541021663114601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.86 us    (2.4%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 308.90 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406633e-19,-1.6443224272762181e-18,-6.5118663972378915e-19)
    sum a = (6.708158697989762e-18,-5.256096890539858e-18,1.7147038394673814e-18)
    sum e = 0.06836286329632624
    sum de = -8.61940727125976e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035584201722138565 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7546e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8844262888576883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08414963619821653, dt = 0.00035584201722138565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 360.34 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.7143825026882265e-19,-1.6465871795152157e-18,-6.509009854594312e-19)
    sum a = (1.8782844354371334e-18,-8.330582281302119e-18,-2.2107542548005263e-20)
    sum e = 0.06836286362381332
    sum de = 1.0516761073109393e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035766598869680814 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9872e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9247009462692147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08450547821543791, dt = 0.00035766598869680814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 333.72 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.126949862035032e-19,-1.6502089114015468e-18,-6.51183038070878e-19)
    sum a = (4.369886237547617e-18,-8.861095814047158e-18,2.479620392154972e-19)
    sum e = 0.06836286398542296
    sum de = -7.26415455565288e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035957505089664145 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9200e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.919003057561307 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.22s (niter = 3) global walltime = 450.18s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08486314420413472, dt = 0.00035957505089664145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 300.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406634e-20,-1.6530258139798043e-18,-6.510754795247427e-19)
    sum a = (-3.028254497949664e-18,-2.1698198145662866e-18,-7.266539272003695e-20)
    sum e = 0.06836286438030516
    sum de = 1.951563910473908e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.62e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.00036157023246542654 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9206e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9240040818407639 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08522271925503136, dt = 0.00036157023246542654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.3%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 285.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.941511989648075e-19,-1.652848002853602e-18,-6.512395548922544e-19)
    sum a = (-6.324835343818918e-18,-6.007957199965775e-18,2.391108472209139e-18)
    sum e = 0.0683628648073609
    sum de = -9.920449878242366e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.14e+00 |
+-------------+----------+
Info: cfl dt = 0.00035132891538003456 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep 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.0119e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9434498261085367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08558428948749679, dt = 0.00035132891538003456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 341.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8687013515828623e-19,-1.6555245282269627e-18,-6.498582225079337e-19)
    sum a = (-6.7848233688239304e-18,-1.7995983328524544e-18,-2.164041742902523e-18)
    sum e = 0.06836286286567546
    sum de = 1.2468324983583301e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003529246789795689 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9905e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9134773560211232 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 454.34s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08593561840287682, dt = 0.0003529246789795689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 272.00 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.360303153693346e-19,-1.6557772071957766e-18,-6.514041697383994e-19)
    sum a = (2.7599281500300737e-18,-3.741670170194579e-18,7.0061332787231445e-19)
    sum e = 0.06836286321965623
    sum de = -2.3852447794681098e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.00035460093091819567 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9452e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9106822590191712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08628854308185639, dt = 0.00035460093091819567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.13 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 359.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.657180979244742e-18,-6.507011311627896e-19)
    sum a = (-2.7599281500300737e-18,-3.8041099509325645e-18,-2.370547380496605e-18)
    sum e = 0.0683628635978738
    sum de = -7.37257477290143e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003563610439437189 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9312e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9128550144499381 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08664314401277459, dt = 0.0003563610439437189 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 278.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.6585473173724017e-18,-6.520934069989534e-19)
    sum a = (-3.0665868333667483e-18,-7.029940685533958e-18,-5.37223086523516e-18)
    sum e = 0.06836286399786143
    sum de = 1.2576745200831851e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003582060004639417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9724e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9237578501465894 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.80s (niter = 2) global walltime = 458.53s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08699950505671832, dt = 0.0003582060004639417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.11 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 320.60 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0728106380652126e-19,-1.661766634604696e-18,-6.5459876803811e-19)
    sum a = (6.209838337567665e-18,-8.603438133699704e-19,3.0735223632471288e-18)
    sum e = 0.06836286441846588
    sum de = 1.0842021724855044e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00036013688579256 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9167e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9198738391751698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08735771105718226, dt = 0.00036013688579256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.80 us    (2.9%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 280.75 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.6331500771604934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-20,-1.6604096549573626e-18,-6.519593248791112e-19)
    sum a = (-3.0665868333667483e-18,-6.271529439879536e-18,1.5978762781625318e-19)
    sum e = 0.06836286485704597
    sum de = 1.620882247865829e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.00035133116528395615 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9279e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9265817603356482 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 461.34s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08771784794297482, dt = 0.00035133116528395615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 335.24 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604934
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-19,-1.6638910096387971e-18,-6.524813136998348e-19)
    sum a = (3.028254497949664e-18,-2.6736991123022866e-18,-1.3986060739949106e-18)
    sum e = 0.06836286319483445
    sum de = -1.3552527156068805e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003529013191617705 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9769e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9113975827246776 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 462.73s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08806917910825877, dt = 0.0003529013191617705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 319.30 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-1.6641436886076108e-18,-6.531907082002096e-19)
    sum a = (2.568266472944652e-18,-6.326908247211224e-18,-2.6769276428512357e-18)
    sum e = 0.06836286354131357
    sum de = 7.209944447028604e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003545512487997153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9595e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.912814557492929 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 464.12s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08842208042742054, dt = 0.0003545512487997153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 271.72 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-19,-1.6667266291777075e-18,-6.54387938507411e-19)
    sum a = (-3.8332335417084355e-20,-5.1333229871373354e-18,-4.861757949648975e-18)
    sum e = 0.06836286390030029
    sum de = 8.131516293641283e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035628395847508456 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7884e+04 | 82944 |      1 | 1.433e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8907465614934746 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 465.55s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08877663167622026, dt = 0.00035628395847508456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 306.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.6331500771604937
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.018671414095393e-19,-1.6688322872511555e-18,-6.565037476101538e-19)
    sum a = (-3.0665868333667484e-19,-7.398627376474255e-18,-3.0077321430100755e-18)
    sum e = 0.06836286426756744
    sum de = -5.5294310796760726e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003581002875692625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9214e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9156735133860269 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 466.95s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08913291563469534, dt = 0.0003581002875692625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.3%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 295.62 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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.6331500771604939
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0124476093969286e-19,-1.672163906247367e-18,-6.572217263762182e-19)
    sum a = (-1.2649670687637836e-18,-6.8192251425039115e-18,-2.5989170988145715e-18)
    sum e = 0.06836286464278706
    sum de = -8.348356728138384e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003600012740649443 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9745e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9285916626365154 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 468.34s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.0894910159222646, dt = 0.0003600012740649443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.46 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 304.75 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.564412440175695e-19,-1.6744380169666912e-18,-6.580147049352887e-19)
    sum a = (1.954949106271302e-18,-3.3891549332583654e-18,-2.88151755791801e-18)
    sum e = 0.06836286502454629
    sum de = 6.1257422745431e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003501739801575204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8205e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9094613246261941 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 469.77s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.08985101719632956, dt = 0.0003501739801575204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.47 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6330295138888888
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2458009010552416e-19,-1.6747842807387694e-18,-6.591862467987018e-19)
    sum a = (2.031613777105471e-18,-4.518835810423182e-18,-6.213083643182823e-18)
    sum e = 0.06836286310100545
    sum de = 4.824699667560495e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.13e+00 |
+-------------+----------+
Info: cfl dt = 0.0003516816938151532 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9292e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9011452727227457 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 471.17s (max_walltime = 471.72s)  [SPH][rank=0]
---------------- t = 0.09020119117648707, dt = 0.0003516816938151532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 281.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.6330295138888886
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-1.6767308446466681e-18,-6.620322442778719e-19)
    sum a = (-8.203119779256051e-18,-7.031587778071412e-19,2.7056764608152975e-19)
    sum e = 0.06836286337089081
    sum de = 3.5236570605778894e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.0003532686337773384 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9964e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9152934380270189 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 472.55s > 471.72s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 15):
   -> walltime = 472.554181513 >= 471.717093845
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000015.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (55.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000015.sham                 [Shamrock Dump][rank=0]
              - took 6.44 ms, bandwidth = 2.78 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 472.554181513 -> 502.554181513

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.09055287287030223)
   -> iter = None (current = 321)
   -> walltime = 502.554181513 (current = 472.56492896500004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 502.55s)      [SPH][rank=0]
---------------- t = 0.09055287287030223, dt = 0.0003532686337773384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 283.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.632908950617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.6761131849451233e-18,-6.6071062300603e-19)
    sum a = (-1.6482904229346272e-18,-2.2383238905558028e-18,-4.298252923125748e-18)
    sum e = 0.06836286364331146
    sum de = -5.421010862427522e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003549380534244777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9725e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9157489771965986 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.95s (niter = 5) global walltime = 473.95s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09090614150407957, dt = 0.0003549380534244777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 275.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.632908950617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.593656445351658e-19,-1.6771332593007048e-18,-6.631466963197272e-19)
    sum a = (8.049790437587714e-18,-4.620543774610895e-18,-4.621787081119936e-18)
    sum e = 0.06836286391688122
    sum de = -5.204170427930421e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003566909237453543 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8240e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8972109171434066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09126107955750404, dt = 0.0003566909237453543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 313.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6416136188271604
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.749850312562653e-20,-1.6793980115397026e-18,-6.647857680669985e-19)
    sum a = (-2.721595814612989e-18,-7.942429951282834e-18,-1.2699774810462272e-18)
    sum e = 0.0683628641911163
    sum de = 1.0733601507606494e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003585283053448718 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8068e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8989753788888885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09161777048124939, dt = 0.0003585283053448718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.1%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 325.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6417341820987652
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.079034442763677e-19,-1.6826266872523233e-18,-6.646158809578225e-19)
    sum a = (-2.1466107833567237e-18,-6.534090963918041e-18,-3.4142427786020005e-18)
    sum e = 0.0683628644649596
    sum de = 6.776263578034403e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.00035036350829869385 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9797e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9305125168755902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09197629878659426, dt = 0.00035036350829869385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.57 us   (11.9%)
   patch tree reduce : 2.58 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 283.63 us  (83.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.641734182098765
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8811489609797907e-19,-1.6848352886093622e-18,-6.661682715386091e-19)
    sum a = (-1.9932814416883866e-18,-8.818683181207747e-18,5.5020194712642965e-19)
    sum e = 0.06836286278857243
    sum de = -1.4094628242311558e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.12e+00 |
+-------------+----------+
Info: cfl dt = 0.00035188870834043873 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9497e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9047584185448508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09232666229489295, dt = 0.00035188870834043873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.6%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 274.94 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.6417341820987654
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-19,-1.688410228094061e-18,-6.652684543432311e-19)
    sum a = (3.334913181286339e-18,-8.976654329117996e-18,-8.151332957428009e-18)
    sum e = 0.06836286297100147
    sum de = -4.445228907190568e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.000353495063291418 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9371e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9067630410149322 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.21s (niter = 3) global walltime = 480.99s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09267855100323338, dt = 0.000353495063291418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 262.51 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.6417341820987654
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.6915453190034172e-18,-6.696975004436552e-19)
    sum a = (5.941511989648075e-18,-1.308510206026628e-17,-4.806882219151708e-18)
    sum e = 0.06836286315412053
    sum de = 2.2768245622195593e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003551856175475441 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9476e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9125256531578045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0930320460665248, dt = 0.0003551856175475441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.5%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 284.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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.6417341820987648
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.587432640653194e-19,-1.697347576805808e-18,-6.708013122212349e-19)
    sum a = (1.9932814416883866e-18,-1.1481432871528103e-17,-6.448820878712132e-18)
    sum e = 0.06836286333728117
    sum de = 2.7647155398380363e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003569614456092917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9433e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9162185807973069 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09338723168407236, dt = 0.0003569614456092917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.2%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 304.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.633885513117284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7728705130401514e-19,-1.7006230449200608e-18,-6.734067966896776e-19)
    sum a = (-2.6449311437788205e-18,-9.535617642055402e-18,-7.165730807782039e-18)
    sum e = 0.06836286351925033
    sum de = 4.119968255444917e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003588236990119343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8799e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9109756092413945 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.21s (niter = 3) global walltime = 485.19s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09374419312968164, dt = 0.0003588236990119343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 309.01 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6328004436728396
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.414442377663165e-19,-1.7039827393572515e-18,-6.761285134359235e-19)
    sum a = (3.6415718646230136e-18,-5.179656823233523e-18,-7.587447099468341e-18)
    sum e = 0.06836286370605447
    sum de = -1.83772268236293e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.61e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003607735247825248 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9768e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.930830885792685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09410301682869358, dt = 0.0003607735247825248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 295.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6328004436728396
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.25824851045217e-19,-1.7048156441063044e-18,-6.788482807785143e-19)
    sum a = (-4.5998802500501224e-18,-5.579900309834564e-18,-3.935933160548762e-18)
    sum e = 0.06836286389655893
    sum de = -1.848564704087785e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003503667057701012 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7986e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9079774047740071 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09446379035347612, dt = 0.0003503667057701012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 272.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6328004436728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.593656445351658e-19,-1.7070336039436698e-18,-6.795956657996065e-19)
    sum a = (1.303299404180868e-18,-1.3671616739284716e-17,-3.450894254534497e-18)
    sum e = 0.06836286173735427
    sum de = -1.9353008778866254e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.11e+00 |
+-------------+----------+
Info: cfl dt = 0.0003519030244370358 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8404e+04 | 82944 |      1 | 1.420e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8881461364415231 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.81s (niter = 2) global walltime = 489.44s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09481415705924622, dt = 0.0003519030244370358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 312.20 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.6328004436728392
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-20,-1.7136219740934812e-18,-6.807654864150352e-19)
    sum a = (-8.62477546884398e-18,-1.3425301537092903e-17,-2.0463220225513066e-18)
    sum e = 0.06836286183620421
    sum de = 1.100465205072787e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00035352011055627563 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9412e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9074398915459265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09516606008368325, dt = 0.00035352011055627563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.97 us    (2.5%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 289.21 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6328004436728392
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.7181701955321294e-18,-6.811798845377869e-19)
    sum a = (6.7464910334068465e-18,-3.732311689868143e-18,-4.208114923101798e-18)
    sum e = 0.0683628619423225
    sum de = -1.2468324983583301e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003552214810632588 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8999e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9052624935645389 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 492.24s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09551958019423953, dt = 0.0003552214810632588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 272.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6328004436728394
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.976979799522502e-19,-1.717262422940465e-18,-6.830075169267025e-19)
    sum a = (-8.8164371459294e-19,-5.1064360731594836e-18,-4.095290431354657e-18)
    sum e = 0.06836286205887547
    sum de = -3.63207727782644e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035700818631459707 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8790e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9063976033241796 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 493.66s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.0958748016753028, dt = 0.00035700818631459707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.58 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 301.64 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.7197424202269708e-18,-6.845269258244632e-19)
    sum a = (-3.833233541708435e-18,-2.7838858596657512e-18,-4.966313756161789e-18)
    sum e = 0.06836286218826246
    sum de = -1.951563910473908e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003491624365281255 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9421e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9207364786540692 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 495.05s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09623180986161739, dt = 0.0003491624365281255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.7200231746367638e-18,-6.864174628847695e-19)
    sum a = (-4.408218572964701e-18,-5.23011774915367e-18,-9.299485119277815e-18)
    sum e = 0.06836286055222052
    sum de = 4.445228907190568e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003506484567395853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9652e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9040101377322387 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 496.44s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09658097229814551, dt = 0.0003506484567395853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 301.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4082185729647e-19,-1.7228026432937155e-18,-6.904076842599777e-19)
    sum a = (3.334913181286339e-18,-6.4233614246956434e-18,-3.535076664872652e-18)
    sum e = 0.06836286063504382
    sum de = -1.0842021724855044e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00035221598954958107 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8061e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8836381380762053 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 497.87s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.0969316207548851, dt = 0.00035221598954958107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 310.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.632679880401235
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-19,-1.7247679241622672e-18,-6.906558851760484e-19)
    sum a = (2.9899221625325797e-18,-2.2538215339763815e-18,-5.990271104940254e-18)
    sum e = 0.06836286073472027
    sum de = 8.673617379884035e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003538680343009432 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7600e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8805337917929561 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 499.32s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09728383674443468, dt = 0.0003538680343009432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 303.46 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.618551664145516e-19,-1.7251235464146717e-18,-6.932020262801255e-19)
    sum a = (3.028254497949664e-18,-7.747923296178175e-18,-8.498492668500056e-18)
    sum e = 0.06836286085433543
    sum de = 4.87890977618477e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003556056910918531 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8823e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9034550327281089 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 500.73s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09763770477873562, dt = 0.0003556056910918531 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.35 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 353.73 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (58.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-21,-1.7288388631042671e-18,-6.966242719799678e-19)
    sum a = (4.408218572964701e-18,-4.678341749106967e-18,-5.927958524003096e-18)
    sum e = 0.06836286099618454
    sum de = -1.2576745200831851e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035743013219636686 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9320e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9155623865137931 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 502.13s (max_walltime = 502.55s)  [SPH][rank=0]
---------------- t = 0.09799331046982748, dt = 0.00035743013219636686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.49 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 351.06 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.6326798804012348
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-20,-1.7297934280975637e-18,-6.983578645347815e-19)
    sum a = (-5.0215359396380506e-18,-8.605908772505884e-18,-6.1431542360828506e-18)
    sum e = 0.06836286116216399
    sum de = -2.3852447794681098e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003593425216796133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9003e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9153412191711294 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 503.53s > 502.55s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 16):
   -> walltime = 503.532451416 >= 502.554181513
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000016.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (57.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000016.sham                 [Shamrock Dump][rank=0]
              - took 7.61 ms, bandwidth = 2.36 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 503.532451416 -> 533.532451416

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.09835074060202385)
   -> iter = None (current = 343)
   -> walltime = 533.532451416 (current = 503.544471863)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 533.53s)      [SPH][rank=0]
---------------- t = 0.09835074060202385, dt = 0.0003593425216796133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 269.68 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0253899724070064e-18,-1.7334525939052003e-18,-7.005733028985347e-19)
    sum a = (3.1815838396180015e-18,-4.063227554210942e-18,-5.722303660601678e-18)
    sum e = 0.0683628613542985
    sum de = 7.643625316022806e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00034954912532947536 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9234e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9238352334162917 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.01s (niter = 5) global walltime = 504.95s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.09871008312370347, dt = 0.00034954912532947536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 309.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8394573464069e-19,-1.7339860272838072e-18,-7.025092967771601e-19)
    sum a = (-3.449910187537592e-19,-6.397906358207735e-18,-4.685734744905338e-18)
    sum e = 0.0683628594717097
    sum de = -2.7647155398380363e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003510691830359463 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8239e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8835666382816443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09905963224903294, dt = 0.0003510691830359463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 346.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7311788984672605e-19,-1.7364941000112923e-18,-7.03974225405146e-19)
    sum a = (-2.9899221625325797e-18,-6.1403609796242e-18,-3.747548355455254e-18)
    sum e = 0.0683628596214376
    sum de = -4.391018798566293e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003526714802831082 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9380e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.904790969888173 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09941070143206888, dt = 0.0003526714802831082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.61 us    (2.2%)
   patch tree reduce : 2.49 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 357.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8749251562813265e-19,-1.7390115312191036e-18,-7.051523635844237e-19)
    sum a = (-4.216556895879279e-18,-3.311554414391553e-18,-6.7732427159353936e-18)
    sum e = 0.06836285979723117
    sum de = 2.168404344971009e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003543595017754062 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9091e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9044950403480706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09976337291235199, dt = 0.0003543595017754062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (2.3%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.38 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.739554323078037e-18,-7.080898786216782e-19)
    sum a = (1.4949610812662899e-18,-4.291424738490772e-19,-8.107988613522511e-18)
    sum e = 0.0683628600012398
    sum de = -1.3715157481941631e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003561343831291356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9454e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9144130751638936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1001177324141274, dt = 0.0003561343831291356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.7%)
   patch tree reduce : 2.51 us    (0.6%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 340.60 us  (85.7%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1686414766079237e-19,-1.7390863990617153e-18,-7.111837518957494e-19)
    sum a = (-3.449910187537592e-18,-4.230931521660686e-18,-9.865158099343997e-18)
    sum e = 0.06836286023465285
    sum de = 5.4752209710517974e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035799735006963776 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8029e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8969681948473688 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 3) global walltime = 512.00s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10047386679725653, dt = 0.00035799735006963776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 41.65 us   (11.2%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 308.58 us  (83.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.587432640653194e-19,-1.7411265477728784e-18,-7.150120375830385e-19)
    sum a = (-8.8164371459294e-19,1.2053722660450354e-18,-5.31999277987926e-18)
    sum e = 0.06836286049819404
    sum de = -3.415236843329339e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035050059183816984 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8904e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9152548029506703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10083186414732617, dt = 0.00035050059183816984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.5%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 273.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.6326798804012344
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7311788984672605e-19,-1.7398631529288095e-18,-7.160862339293822e-19)
    sum a = (1.3799640750150368e-18,-3.278612563642496e-18,-7.22235342642842e-18)
    sum e = 0.06836285913279998
    sum de = 1.7564075194265172e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035205155590238996 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9176e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9002279257376993 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10118236473916434, dt = 0.00035205155590238996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.38 us    (0.6%)
   gen split merge   : 1.42 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 399.46 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.983203604220967e-19,-1.7423244332546625e-18,-7.189796302034509e-19)
    sum a = (-2.3382724604421455e-18,-7.590101883953148e-18,-4.5911735536277625e-18)
    sum e = 0.06836285936515225
    sum de = 8.51098705401121e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.000353685936978809 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8695e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8968611302292996 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 3) global walltime = 516.23s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10153441629506672, dt = 0.000353685936978809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.22 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 350.08 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.745787070975444e-18,-7.200695516507653e-19)
    sum a = (-7.666467083416871e-20,-8.178563126879482e-19,-9.60571216751449e-18)
    sum e = 0.06836285962478217
    sum de = 3.415236843329339e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035540673245705996 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9369e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.911370827347029 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10188810223204553, dt = 0.00035540673245705996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.91 us    (2.2%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 338.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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 = (-1.7728705130401514e-19,-1.744355223485499e-18,-7.244075739603425e-19)
    sum a = (-2.798260485447158e-18,4.1866097588346817e-19,-7.66012883904034e-18)
    sum e = 0.0683628599117381
    sum de = 3.957337929572091e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035721507115922145 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9278e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.914405264062587 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10224350896450259, dt = 0.00035721507115922145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.6%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 289.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6326798804012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.935288184949611e-19,-1.7439340918708096e-18,-7.267612229264915e-19)
    sum a = (-1.9932814416883866e-18,1.9944793271701704e-19,-5.333293514036884e-18)
    sum e = 0.06836286022585501
    sum de = -4.4994390158148434e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000359112145843758 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8026e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8996487460838949 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.82s (niter = 2) global walltime = 520.46s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10260072403566181, dt = 0.000359112145843758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.4%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 267.45 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.6414930555555551
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.708158697989762e-20,-1.7440651105953796e-18,-7.2831790170239135e-19)
    sum a = (-5.213197616723472e-18,-2.5224473532664182e-18,-1.2811324197130733e-17)
    sum e = 0.06836286056661686
    sum de = -1.474514954580286e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00034910676170715174 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9392e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9257082536260429 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10295983618150557, dt = 0.00034910676170715174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.41 us    (2.3%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 337.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6414930555555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4019947682662363e-19,-1.745319146959122e-18,-7.340684728438777e-19)
    sum a = (-5.941511989648075e-18,-2.4430874400982355e-18,-8.767204018562615e-18)
    sum e = 0.0683628588334032
    sum de = 1.089623183347932e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003505978647629028 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9204e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8970741986949388 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 523.26s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10330894294321273, dt = 0.0003505978647629028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 321.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.6327883873456792
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.378974567788739e-19,-1.74621756107046e-18,-7.364756919950022e-19)
    sum a = (1.801619764602965e-18,-7.134006986763933e-18,-8.469465433312792e-18)
    sum e = 0.06836285910900604
    sum de = 3.848917712323541e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00035217138769027477 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7701e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8780305214317532 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 524.69s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10365954080797564, dt = 0.00035217138769027477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 308.04 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.593656445351658e-19,-1.749493029184713e-18,-7.394268353892438e-19)
    sum a = (-3.52657485837176e-18,-4.868805540710605e-18,-1.3409563019974552e-17)
    sum e = 0.06836285940582322
    sum de = -6.5052130349130266e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003538308650784173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9398e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9079088110082689 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 526.09s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10401171219566592, dt = 0.0003538308650784173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 33.61 us   (9.7%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 298.10 us  (85.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2458009010552416e-19,-1.751448951572938e-18,-7.450090064565375e-19)
    sum a = (-1.8782844354371334e-18,1.6695528902362913e-18,-1.17004321874906e-17)
    sum e = 0.06836285972258749
    sum de = -8.998878031629687e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035557741712961155 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9407e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9123341499220003 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 527.49s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10436554306074433, dt = 0.00035557741712961155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 323.56 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.599880250050123e-19,-1.749324576538837e-18,-7.488493137362225e-19)
    sum a = (2.4532694666933987e-18,-4.111142973482297e-18,-1.0826464806510895e-17)
    sum e = 0.06836286005900487
    sum de = 2.710505431213761e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003574122788915261 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8944e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9096827187622218 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 528.90s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10472112047787395, dt = 0.0003574122788915261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 311.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8687013515828623e-19,-1.752235063920359e-18,-7.525430469838539e-19)
    sum a = (-1.3799640750150368e-18,-1.4440509482904746e-18,-9.033400075218576e-18)
    sum e = 0.0683628604134354
    sum de = -7.535205098774256e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003493311193094731 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9011e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.915416321246314 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 530.30s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10507853275676547, dt = 0.0003493311193094731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 271.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-1.751561253336855e-18,-7.55418934903037e-19)
    sum a = (-5.443191629225978e-18,-1.4329705075839737e-18,-1.0914638617417837e-17)
    sum e = 0.06836285903150395
    sum de = -7.209944447028604e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003508242096832657 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9360e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.90001365824763 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 531.70s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10542786387607495, dt = 0.0003508242096832657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 310.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.983203604220967e-19,-1.7522163469597058e-18,-7.596086198542933e-19)
    sum a = (-4.216556895879279e-19,3.668524287963151e-18,-7.28974274700482e-18)
    sum e = 0.06836285931545684
    sum de = 9.269928574751063e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035239980534725214 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7287e+04 | 82944 |      1 | 1.448e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8722897173262726 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 533.15s (max_walltime = 533.53s)  [SPH][rank=0]
---------------- t = 0.10577868808575822, dt = 0.00035239980534725214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 316.02 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5812088359547295e-19,-1.750101330405931e-18,-7.615518859965187e-19)
    sum a = (3.679904200040098e-18,-4.225241565622212e-18,-9.866039677533194e-18)
    sum e = 0.06836285961274603
    sum de = 7.860465750519907e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003540609892649764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7985e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8868900758874526 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 534.58s > 533.53s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 17):
   -> walltime = 534.5831912360001 >= 533.532451416
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000017.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (51.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000017.sham                 [Shamrock Dump][rank=0]
              - took 6.13 ms, bandwidth = 2.93 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 534.5831912360001 -> 564.5831912360001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.10613108789110547)
   -> iter = None (current = 365)
   -> walltime = 564.5831912360001 (current = 534.5937509930001)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 564.58s)      [SPH][rank=0]
---------------- t = 0.10613108789110547, dt = 0.0003540609892649764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 273.90 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.102054643241175e-19,-1.752965025385821e-18,-7.6545939474322775e-19)
    sum a = (1.5332934166833741e-18,-2.3188068213631575e-18,-4.78532256150639e-18)
    sum e = 0.06836285992162917
    sum de = 1.8756697583999227e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035580879646420957 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9332e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9117666739092194 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.99s (niter = 5) global walltime = 535.99s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.10648514888037044, dt = 0.00035580879646420957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 269.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0541392239698198e-19,-1.753292572197246e-18,-7.662549054029043e-19)
    sum a = (2.568266472944652e-18,-2.9605739682288746e-18,-7.463649288595576e-18)
    sum e = 0.06836286024164681
    sum de = 1.1926223897340549e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003576444199832882 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9411e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9174970824991366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10684095767683466, dt = 0.0003576444199832882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 284.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8811489609797907e-19,-1.75488351385274e-18,-7.693959213709728e-19)
    sum a = (-4.408218572964701e-18,-2.20860135703904e-18,-6.086573107872536e-18)
    sum e = 0.06836286057181822
    sum de = -6.613633252161577e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035956902524233395 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8739e+04 | 82944 |      1 | 1.412e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.911798513264406 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10719860209681795, dt = 0.00035956902524233395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-19,-1.755482456593632e-18,-7.713107607047488e-19)
    sum a = (4.024895218793857e-18,-5.480326079161278e-19,-6.3323812804012454e-18)
    sum e = 0.0683628609111778
    sum de = 3.7947076036992655e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003495773178737155 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8034e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9056913873163659 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10755817112206029, dt = 0.0003495773178737155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.26 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 347.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.229004505276208e-20,-1.755482456593632e-18,-7.73628918629167e-19)
    sum a = (4.791541927135544e-18,-7.322075007404004e-19,-2.8991875106998492e-18)
    sum e = 0.06836285914583863
    sum de = -3.0899761915836876e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000351097015675871 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9318e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9000158790602141 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.107907748439934, dt = 0.000351097015675871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 346.58 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0665868333667484e-19,-1.755688343160814e-18,-7.739775490402332e-19)
    sum a = (-3.028254497949664e-18,-2.0672508701885414e-18,-4.042769806782991e-18)
    sum e = 0.06836285939000263
    sum de = 6.451002926288751e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035269929302761464 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7815e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8810233189093236 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.24s (niter = 3) global walltime = 543.07s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.10825884545560988, dt = 0.00035269929302761464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 310.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.187312890703316e-19,-1.756362153744317e-18,-7.75647577468443e-19)
    sum a = (7.666467083416871e-19,-7.88508118384243e-19,-3.0140379511307216e-18)
    sum e = 0.06836285963983252
    sum de = -9.215718466126788e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003543876031537762 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7940e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8869530510793199 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10861154474863749, dt = 0.00027734414025139265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.4%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 306.87 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1082784479396395e-19,-1.7563247198230115e-18,-7.763112301762594e-19)
    sum a = (8.854769481346486e-18,-1.4362646926588794e-18,3.3003694161157143e-20)
    sum e = 0.0683628478775008
    sum de = 1.0842021724855044e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035578187494325923 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9777e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7195688148042545 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 374                                                     [SPH][rank=0]
Info: time since start : 545.889107255 (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/dustysod_128/l2_error_0000004.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 373)
   -> walltime = 564.5831912360001 (current = 548.182475411)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 564.58s)      [SPH][rank=0]
---------------- t = 0.10888888888888888, dt = 0.00035578187494325923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 299.80 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.647795669321478e-19,-1.7570546812884736e-18,-7.758478686904927e-19)
    sum a = (3.756568870874267e-18,-2.0058592392471172e-18,-5.231457680662454e-18)
    sum e = 0.06836286010354546
    sum de = 1.0842021724855044e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035761398755046426 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8782e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.907708909569501 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.82s (niter = 2) global walltime = 549.59s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.10924467076383214, dt = 0.00035761398755046426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 275.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.9707559948240377e-19,-1.7575226053047952e-18,-7.786685431498439e-19)
    sum a = (-1.8782844354371334e-18,-3.7451889587973195e-18,-3.193077683545642e-18)
    sum e = 0.06836286037001403
    sum de = 1.2630955309456127e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034962510725726655 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9296e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9203575514872471 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1096022847513826, dt = 0.00034962510725726655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 46.62 us   (13.4%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 284.96 us  (81.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6061040547485865e-19,-1.7591509808815953e-18,-7.794096274828525e-19)
    sum a = (-6.094841331316413e-18,-3.311254943021107e-18,1.3155140313774083e-18)
    sum e = 0.0683628589121982
    sum de = -9.920449878242366e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003511495133877638 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9185e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8981149123040343 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.81s (niter = 2) global walltime = 552.40s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.10995190985863987, dt = 0.0003511495133877638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 274.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.360303153693346e-19,-1.760816790379701e-18,-7.781689711793966e-19)
    sum a = (-3.718236535457182e-18,-2.1582901668041167e-18,-3.3573502266307845e-18)
    sum e = 0.068362859101871
    sum de = -6.884683795282953e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035275764040543467 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8977e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8988549704184017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11030305937202763, dt = 0.00035275764040543467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.28 us    (2.2%)
   patch tree reduce : 2.43 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 355.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.564412440175695e-19,-1.7617432799320183e-18,-7.801272320025337e-19)
    sum a = (5.9798443250651594e-18,-3.864678035605262e-18,-3.663680394011717e-18)
    sum e = 0.06836285929665925
    sum de = 6.396792817664476e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035445256150458274 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7989e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8878574547992426 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 555.24s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.11065581701243306, dt = 0.00035445256150458274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.7%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 353.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.222780700577744e-19,-1.763193844382616e-18,-7.814890766120387e-19)
    sum a = (-4.638212585467207e-18,-2.9782427790851868e-18,-2.4826646189272633e-18)
    sum e = 0.06836285949738775
    sum de = 1.2793585635328952e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035623542840156633 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8879e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9058144961145863 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 556.65s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.11101026957393764, dt = 0.00035623542840156633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.20 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 335.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.632788387345679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.810213341230937e-19,-1.76397059824971e-18,-7.821902124689826e-19)
    sum a = (1.839952100020049e-18,3.629593009805175e-18,-4.483081008222318e-18)
    sum e = 0.06836285970527514
    sum de = -6.776263578034403e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003581074666415786 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9127e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9142034876307488 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 558.05s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.1113665050023392, dt = 0.0003581074666415786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.6%)
   patch tree reduce : 2.39 us    (0.6%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 384.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (77.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.366526958391809e-19,-1.7614625255222253e-18,-7.841551891598469e-19)
    sum a = (-1.6866227583517116e-18,3.768547725692105e-18,-5.275045249592216e-18)
    sum e = 0.06836285992105165
    sum de = 1.0950441942103595e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003600698899644035 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8401e+04 | 82944 |      1 | 1.420e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9077150799098739 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 559.47s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.11172461246898079, dt = 0.0003600698899644035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.7%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 352.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.6327883873456788
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.276919924547563e-19,-1.7601804137175034e-18,-7.861871635776495e-19)
    sum a = (-2.606598808361736e-18,-1.4491419615880562e-18,-5.375496360114647e-18)
    sum e = 0.06836286014548688
    sum de = 2.9815559743351372e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003497692035864453 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8084e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9077334446281338 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 560.90s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.11208468235894518, dt = 0.0003497692035864453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.53 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 340.10 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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 = (-4.983203604220967e-19,-1.761546751845163e-18,-7.881223982096581e-19)
    sum a = (3.0665868333667483e-18,7.976719423198897e-18,-5.623375155712919e-18)
    sum e = 0.0683628582574716
    sum de = 6.396792817664476e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035132084374916837 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9159e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8980871584178595 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 562.30s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.11243445156253162, dt = 0.00035132084374916837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.09 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 358.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.6327883873456785
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8207859323115067e-19,-1.7567739268786805e-18,-7.901158393210224e-19)
    sum a = (2.2999401250250614e-19,2.6548136990035377e-18,-2.2013654362574107e-18)
    sum e = 0.06836285840148612
    sum de = 2.1141942363467336e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003529561274601541 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8487e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8918199111708923 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 563.72s (max_walltime = 564.58s)  [SPH][rank=0]
---------------- t = 0.1127857724062808, dt = 0.0003529561274601541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 314.48 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (56.7%)
Warning: High interface/patch volume ratio.                                  [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.389547158869308e-19,-1.7567739268786805e-18,-7.902683658903463e-19)
    sum a = (-1.954949106271302e-18,7.126220731132338e-18,-1.7632587240826696e-18)
    sum e = 0.06836285855626192
    sum de = -4.336808689942018e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035467869806882283 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8851e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9015497630901324 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 565.13s > 564.58s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 18):
   -> walltime = 565.132018239 >= 564.5831912360001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000018.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (53.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000018.sham                 [Shamrock Dump][rank=0]
              - took 6.11 ms, bandwidth = 2.93 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 565.132018239 -> 595.132018239

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.11313872853374095)
   -> iter = None (current = 385)
   -> walltime = 595.132018239 (current = 565.1425311940001)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 595.13s)      [SPH][rank=0]
---------------- t = 0.11313872853374095, dt = 0.00035467869806882283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.42 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.6317033179012341
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.89359657037672e-19,-1.7537792131742207e-18,-7.908991944098e-19)
    sum a = (-5.941511989648075e-18,3.3886682922813907e-18,-3.0110179210042587e-18)
    sum e = 0.06836285872269507
    sum de = 9.161508357502512e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003564896976154338 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8906e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9068056136881241 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.05s (niter = 5) global walltime = 566.55s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11349340723180977, dt = 0.0003564896976154338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 3.80 us    (1.1%)
   gen split merge   : 2.13 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.89 us    (0.5%)
   LB compute        : 320.22 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.623854648919753
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.756074117261118e-19,-1.753170911953002e-18,-7.921868287712416e-19)
    sum a = (5.711517977145569e-18,-1.6547290573992157e-18,-1.2143195046496202e-18)
    sum e = 0.0683628589023362
    sum de = 7.752045533271357e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00034870539440668726 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9316e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9177751765196136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11384989692942521, dt = 0.00034870539440668726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (1.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 340.16 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.63255931712963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.031119023492321e-19,-1.7546589103249058e-18,-7.922889347782187e-19)
    sum a = (2.37660479585923e-18,-1.008170368606363e-18,-2.1895191096735773e-18)
    sum e = 0.0683628574734675
    sum de = 1.4799359654427136e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035019067560386523 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8638e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8874770875352281 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1141986023238319, dt = 0.00035019067560386523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 321.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.6325593171296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.976979799522502e-19,-1.754602759442947e-18,-7.931570329532002e-19)
    sum a = (4.676544920884291e-18,4.83646263270244e-20,-1.0495371274039192e-18)
    sum e = 0.0683628576014835
    sum de = -9.107298248878237e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035175922974330467 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7663e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.876436707956365 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11454879299943577, dt = 0.00035175922974330467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 338.96 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.63255931712963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.587432640653194e-19,-1.754724419687191e-18,-7.933437535471148e-19)
    sum a = (-5.0598682750551345e-18,3.892678608741961e-18,-3.246621787797439e-18)
    sum e = 0.06836285774386237
    sum de = -4.87890977618477e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035341411662352705 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9167e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.90331534545991 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.11490055222917907, dt = 0.00035341411662352705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 325.13 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.63255931712963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-19,-1.7526374785743953e-18,-7.94925544905957e-19)
    sum a = (-3.833233541708435e-18,-2.786581101999765e-18,-3.6608382260243485e-18)
    sum e = 0.06836285790251866
    sum de = -3.848917712323541e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035515643662658577 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8981e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9047221850079307 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.24s (niter = 3) global walltime = 573.62s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.1152539663458026, dt = 0.00035515643662658577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.19 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 336.48 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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.63255931712963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-19,-1.7546963442462114e-18,-7.962842175978363e-19)
    sum a = (-6.018176660482243e-18,6.627151692284127e-18,-5.4731341817145e-18)
    sum e = 0.06836285807893756
    sum de = 3.903127820947816e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003569873754298755 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8698e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9048217696722262 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11560912278242919, dt = 0.0003569873754298755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.64 us    (2.5%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 317.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (77.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271089e-21,-1.750634763784538e-18,-7.986222334514936e-19)
    sum a = (7.666467083416871e-19,-7.431382057616783e-19,-1.0976415796902e-18)
    sum e = 0.06836285827447709
    sum de = 6.451002926288751e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003589080867087359 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8863e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9120334200361223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11596611015785906, dt = 0.0003589080867087359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 314.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6325593171296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5395172213818386e-19,-1.752431592007214e-18,-7.982092863607568e-19)
    sum a = (1.1116377270954463e-18,5.490807577126888e-19,-2.5891356248327862e-18)
    sum e = 0.06836285849049573
    sum de = 4.065758146820642e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003490053472299639 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8386e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9095163606500806 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.24s (niter = 3) global walltime = 577.86s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.1163250182445678, dt = 0.0003490053472299639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 257.87 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6325593171296298
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8811489609797907e-19,-1.7517203475024046e-18,-7.993114687952028e-19)
    sum a = (1.4949610812662899e-18,1.965580339922134e-18,-3.389491958999778e-18)
    sum e = 0.06836285676742979
    sum de = -7.426784881525705e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035052457194067874 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8487e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8859508129251725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11667402359179777, dt = 0.00035052457194067874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.19 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        : 319.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.654019474019942e-19,-1.7513085743680416e-18,-8.006317382608829e-19)
    sum a = (1.1116377270954463e-18,2.3089242661384403e-18,-5.3321910145164926e-18)
    sum e = 0.06836285693046869
    sum de = -6.179952383167375e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035212747160216204 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9160e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9000516195176494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11702454816373845, dt = 0.00035212747160216204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 311.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [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 = (-4.2644723151506344e-19,-1.749418161342101e-18,-8.028655790841085e-19)
    sum a = (-5.213197616723472e-18,4.792140869876436e-18,-1.5894345941155074e-18)
    sum e = 0.06836285711325277
    sum de = -5.583641188300348e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035381760474036345 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8144e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8886348074025303 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.83s (niter = 2) global walltime = 582.11s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11737667563534061, dt = 0.00035381760474036345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 297.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.6324387538580252
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-19,-1.747677484001384e-18,-8.027577580565759e-19)
    sum a = (-4.791541927135544e-18,9.407593631189749e-18,-5.085376052520451e-18)
    sum e = 0.06836285731725421
    sum de = -1.5178830414797062e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035559609256125945 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8103e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8922658365469068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11773049324008097, dt = 0.00035559609256125945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.5%)
   patch tree reduce : 2.62 us    (0.9%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 281.71 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3416317395979523e-19,-1.7437656392249335e-18,-8.052318109528805e-19)
    sum a = (-1.2266347333466993e-18,9.226413452069937e-18,-9.178782229741184e-18)
    sum e = 0.068362857543494
    sum de = -2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035746412110591386 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8568e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9039367451340066 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 584.96s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11808608933264224, dt = 0.00035746412110591386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 263.45 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.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.7400971149369703e-18,-8.09216568091497e-19)
    sum a = (-1.1499700625125307e-19,4.532499191699779e-18,-6.2841272833910505e-18)
    sum e = 0.06836285779276331
    sum de = -1.463672932855431e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00034959710310867 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7928e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8987486261559485 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 586.39s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11844355345374816, dt = 0.00034959710310867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 263.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632438753858025
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-20,-1.739273568668244e-18,-8.108544194300586e-19)
    sum a = (-7.66646708341687e-18,9.789120157137918e-18,-6.0144737286940024e-18)
    sum e = 0.06836285647020425
    sum de = -2.0057740190981832e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035113009605929095 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8511e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8878130663337085 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 587.81s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11879315055685682, dt = 0.00035113009605929095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.73 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 348.33 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084355e-20,-1.7353430069311404e-18,-8.129944990867693e-19)
    sum a = (-5.749850312562653e-18,5.498593832758483e-18,-1.1320977735954857e-18)
    sum e = 0.06836285667782728
    sum de = -1.6479873021779667e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003527470981543359 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8224e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8873277525935179 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 589.23s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11914428065291612, dt = 0.0003527470981543359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 293.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.791541927135544e-20,-1.7343322910558854e-18,-8.125281410698062e-19)
    sum a = (2.5299341375275673e-18,3.519387545481057e-18,-5.3370122972277234e-18)
    sum e = 0.06836285690663656
    sum de = 8.673617379884035e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035445119072634155 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8000e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8879845486337996 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 590.66s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11949702775107045, dt = 0.00035445119072634155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 262.98 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.318611539120454e-19,-1.7333215751806303e-18,-8.151092659905474e-19)
    sum a = (-1.4182964104321211e-18,7.082497911047227e-19,-6.8596265201008825e-18)
    sum e = 0.06836285715707538
    sum de = -8.782037597132586e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003562434864290774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9236e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9112919855211669 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 592.07s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.11985147894179679, dt = 0.0003562434864290774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 347.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.15184508082889e-19,-1.7335836126297705e-18,-8.178707450219993e-19)
    sum a = (-4.983203604220967e-19,2.3831931660090415e-18,-4.464336338543019e-18)
    sum e = 0.06836285742957722
    sum de = 7.643625316022806e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003581251781835295 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8958e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9116124310815003 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 593.47s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.12020772242822587, dt = 0.0003581251781835295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 271.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6324387538580243
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-19,-1.7319365200923176e-18,-8.190374977415793e-19)
    sum a = (-3.4115778521205075e-18,3.620608868691796e-19,-5.3184487913817725e-18)
    sum e = 0.06836285772409657
    sum de = -5.421010862427522e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00036009743927589304 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7776e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8980480818574659 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 594.91s (max_walltime = 595.13s)  [SPH][rank=0]
---------------- t = 0.1205658476064094, dt = 0.00036009743927589304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 261.24 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.6324387538580243
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.331059148517383e-19,-1.7329846698888785e-18,-8.210716187871994e-19)
    sum a = (-5.519856300060147e-18,-2.7614255068823034e-18,-7.619790485661685e-18)
    sum e = 0.06836285804064939
    sum de = -1.7726705520137997e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034982244302973455 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8015e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9067294027536427 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 596.34s > 595.13s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 19):
   -> walltime = 596.341291969 >= 595.132018239
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000019.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (55.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000019.sham                 [Shamrock Dump][rank=0]
              - took 6.42 ms, bandwidth = 2.79 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 596.341291969 -> 626.341291969

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.1209259450456853)
   -> iter = None (current = 407)
   -> walltime = 626.341291969 (current = 596.352040503)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 626.34s)      [SPH][rank=0]
---------------- t = 0.1209259450456853, dt = 0.00034982244302973455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.97 us    (1.4%)
   patch tree reduce : 1.94 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        : 336.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.3%)
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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.78531812243708e-19,-1.7337707822362992e-18,-8.241818290063762e-19)
    sum a = (5.443191629225978e-18,3.2193172322941937e-18,-1.1036857976335608e-17)
    sum e = 0.06836285637691471
    sum de = -9.486769009248164e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035138586112846786 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9225e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8992260495224673 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.01s (niter = 5) global walltime = 597.75s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12127576748871503, dt = 0.00035138586112846786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 266.96 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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 = (-7.187312890703316e-20,-1.731468596075996e-18,-8.286962986766661e-19)
    sum a = (2.4532694666933987e-18,4.344431171059709e-18,-7.504245125445897e-18)
    sum e = 0.0683628566288998
    sum de = -3.2526065174565133e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003530332927118145 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8673e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8948275394262231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1216271533498435, dt = 0.0003530332927118145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 332.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5395172213818386e-19,-1.7293161456009155e-18,-8.307133125164715e-19)
    sum a = (5.213197616723472e-18,2.3508502580008765e-18,-6.3647593613902864e-18)
    sum e = 0.06836285689947967
    sum de = 1.3823577699190182e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003547683379709375 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9168e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9066124534080114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12198018664255532, dt = 0.0003547683379709375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.6%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 279.33 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6957110885928335e-19,-1.7295033152074441e-18,-8.327547109235233e-19)
    sum a = (4.983203604220967e-19,5.192833563533146e-18,-6.2199044495635206e-18)
    sum e = 0.06836285718812506
    sum de = -2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035659211365588486 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8306e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8977932818011173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12233495498052625, dt = 0.00035659211365588486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 310.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,-1.7271075442438764e-18,-8.349499485436709e-19)
    sum a = (-1.839952100020049e-18,2.089711222971989e-18,-3.0011698439755563e-18)
    sum e = 0.06836285749461961
    sum de = 4.336808689942018e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003585058194079981 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9273e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9173784124990354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12269154709418213, dt = 0.0003585058194079981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.4%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 308.73 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.293716320326597e-19,-1.7267706389521247e-18,-8.354822330621307e-19)
    sum a = (-5.941511989648075e-18,6.92018442826551e-18,-8.736146725815286e-18)
    sum e = 0.06836285781877953
    sum de = -2.0708261494473135e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003502177027206828 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8352e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9079690310149089 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 3) global walltime = 604.82s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12305005291359013, dt = 0.0003502177027206828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 351.29 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.576860049572625e-19,-1.7230646807428558e-18,-8.39568410396219e-19)
    sum a = (-1.9166167708542177e-19,-3.485547280620662e-18,-6.077322588084407e-18)
    sum e = 0.06836285649204607
    sum de = 1.4907779871675686e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035178820034265323 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8621e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8910674613649618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12340027061631081, dt = 0.00035178820034265323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.29 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 336.51 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406633e-19,-1.7266209032669017e-18,-8.412015436072488e-19)
    sum a = (-2.1082784479396394e-18,5.562081763293029e-18,-1.0192191923681633e-17)
    sum e = 0.06836285675377402
    sum de = -8.131516293641283e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003534429409566072 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8621e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8950523573285128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12375205881665347, dt = 0.0003534429409566072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 331.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.120726057336568e-19,-1.7229898129002443e-18,-8.455146937187808e-19)
    sum a = (-4.5615479146330385e-18,-5.788781590720629e-19,-2.255864571410114e-18)
    sum e = 0.0683628570296398
    sum de = -1.3010426069826053e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003551850434424109 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9085e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9063829907613848 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 3) global walltime = 609.05s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12410550175761008, dt = 0.0003551850434424109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.20 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 310.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6894872838943693e-19,-1.7241502644607224e-18,-8.449093316390634e-19)
    sum a = (-4.983203604220966e-18,1.2568813417617424e-18,-6.3974190217805254e-18)
    sum e = 0.06836285731868823
    sum de = 2.1141942363467336e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035701558871620184 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8520e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9021507949277356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12446068680105249, dt = 0.00035701558871620184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.01 us    (2.2%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 343.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.20410928648235e-19,-1.7233828690739547e-18,-8.479500194169208e-19)
    sum a = (-6.363167679236003e-18,4.027590461127871e-18,3.479609629202671e-18)
    sum e = 0.06836285762094918
    sum de = 2.7647155398380363e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003589357518045639 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8803e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9111793034309225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12481770238976869, dt = 0.0003589357518045639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.23 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 318.71 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-19,-1.721548606929973e-18,-8.44949457759623e-19)
    sum a = (-3.8332335417084355e-20,6.937553767751376e-18,-1.8451575663455124e-18)
    sum e = 0.06836285793628184
    sum de = -9.107298248878237e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003490652277642486 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8849e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9168044690287087 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.82s (niter = 2) global walltime = 613.29s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12517663814157326, dt = 0.0003490652277642486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.08 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 364.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.845681151105364e-19,-1.7184977423435548e-18,-8.465851999347335e-19)
    sum a = (-2.6832634791959047e-18,7.145985841581772e-18,2.583581652701823e-18)
    sum e = 0.06836285633983215
    sum de = 1.0842021724855044e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035058161403209664 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8665e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8888028219550012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12552570336933752, dt = 0.00035058161403209664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 275.05 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.587432640653194e-19,-1.716232990104557e-18,-8.448712073272247e-19)
    sum a = (4.523215579215954e-18,-9.67292526540488e-20,2.0193204744327016e-18)
    sum e = 0.06836285657433346
    sum de = 1.1275702593849246e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003521812577231408 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9004e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8978211643792492 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 616.12s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.1258762849833696, dt = 0.0003521812577231408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 277.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.395770963567772e-19,-1.7180298183272329e-18,-8.442769405614311e-19)
    sum a = (-6.899820375075184e-19,3.824848343335948e-18,-3.739112163522319e-19)
    sum e = 0.06836285681902625
    sum de = -1.1872013788716274e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035386763932748706 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9037e+04 | 82944 |      1 | 1.405e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9024159853839743 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 617.52s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12622846624109274, dt = 0.00035386763932748706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.27 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 324.69 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-1.7152597081506076e-18,-8.4480577267933715e-19)
    sum a = (1.5716257521004586e-18,7.67245651082579e-19,4.696630523862714e-18)
    sum e = 0.06836285707277456
    sum de = 1.0625181290357943e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035564180880782423 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8094e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8922506462418472 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 618.95s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12658233388042023, dt = 0.00035564180880782423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.33 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 333.43 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.6326678240740746
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.551964830778767e-19,-1.7157276321669294e-18,-8.422530220778173e-19)
    sum a = (7.283143729246027e-19,-6.986667072504515e-19,-9.766721450711464e-19)
    sum e = 0.06836285733562357
    sum de = 2.2280354644577116e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003575049047868818 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8770e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9071571213461908 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 620.36s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12693797568922804, dt = 0.0003575049047868818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.45 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 318.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.7156340473636651e-18,-8.43601565705098e-19)
    sum a = (9.583083854271088e-19,-1.4596234595536652e-18,-3.72190028570101e-18)
    sum e = 0.06836285760761304
    sum de = 5.4752209710517974e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00034940843096990944 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9176e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9182161616258173 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 621.77s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12729548059401494, dt = 0.00034940843096990944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.04 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 323.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-20,-1.7166447632389203e-18,-8.454054934408008e-19)
    sum a = (-7.283143729246027e-18,3.398101640450439e-18,2.2035687584943647e-18)
    sum e = 0.06836285627094243
    sum de = -2.4936649967166602e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003509357197337917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9270e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8988460653150243 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 623.17s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12764488902498486, dt = 0.0003509357197337917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 300.42 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-20,-1.7145671806064514e-18,-8.435889802823145e-19)
    sum a = (-2.721595814612989e-18,-7.89107061125135e-19,-2.013011809331955e-18)
    sum e = 0.06836285647291011
    sum de = -6.396792817664476e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035254676533566157 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8126e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8853518069668463 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 624.59s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12799582474471866, dt = 0.00035254676533566157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 305.26 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.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.715652764324318e-18,-8.450412008644832e-19)
    sum a = (4.216556895879279e-19,-1.2215437200491177e-18,8.015078422320881e-18)
    sum e = 0.06836285668236738
    sum de = -2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003542446699366988 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9149e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9050750739509105 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 626.00s (max_walltime = 626.34s)  [SPH][rank=0]
---------------- t = 0.12834837151005432, dt = 0.0003542446699366988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 267.40 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.6%)
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.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271089e-21,-1.716682197160226e-18,-8.404420267046632e-19)
    sum a = (-1.3416317395979524e-18,1.0864821319779847e-18,2.7142277062856228e-18)
    sum e = 0.06836285689907896
    sum de = -2.1521413123837263e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035603051204858443 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8609e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9011190386353946 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 627.41s > 626.34s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 20):
   -> walltime = 627.4132642650001 >= 626.341291969
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000020.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (52.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000020.sham                 [Shamrock Dump][rank=0]
              - took 6.08 ms, bandwidth = 2.95 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 627.4132642650001 -> 657.4132642650001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.12870261617999101)
   -> iter = None (current = 429)
   -> walltime = 657.4132642650001 (current = 627.4238103250001)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 657.41s)      [SPH][rank=0]
---------------- t = 0.12870261617999101, dt = 0.00035603051204858443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 288.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.372750763090274e-19,-1.7152971420719134e-18,-8.404261212352707e-19)
    sum a = (-2.9899221625325797e-18,2.6033046232868303e-18,3.657226836339249e-18)
    sum e = 0.0683628571239491
    sum de = 9.432558900623889e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003579054589638177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8982e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9114255132424555 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.04s (niter = 5) global walltime = 628.83s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.1290586466920396, dt = 0.0003579054589638177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 319.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.845681151105364e-19,-1.7142677092360054e-18,-8.389618642257999e-19)
    sum a = (-5.136532945889304e-18,6.679708917797395e-18,-3.476103944627994e-18)
    sum e = 0.06836285735717551
    sum de = 4.445228907190568e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003598706545677486 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8140e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.90314508213667 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.12941655215100342, dt = 0.0003598706545677486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.2%)
   patch tree reduce : 2.65 us    (0.8%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 309.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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 = (-5.031119023492321e-19,-1.7111981276889342e-18,-8.414478772421122e-19)
    sum a = (-1.1499700625125307e-19,6.159527147332742e-18,3.001461281991361e-19)
    sum e = 0.06836285759936953
    sum de = 8.131516293641283e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003496946454206211 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8392e+04 | 82944 |      1 | 1.420e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9120422239640555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12977642280557117, dt = 0.0003496946454206211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (1.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 344.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0541392239698198e-19,-1.7097943556399686e-18,-8.406956092641106e-19)
    sum a = (-9.966407208441933e-19,6.660243278718407e-18,-2.4925456844798135e-19)
    sum e = 0.06836285590025452
    sum de = -5.5294310796760726e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003512541020283715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8163e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8827792802947472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13012611745099179, dt = 0.0003512541020283715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.49 us    (0.7%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 339.60 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.62477546884398e-20,-1.707230132030525e-18,-8.408797885860171e-19)
    sum a = (-2.261607789607977e-18,1.6812322736836842e-18,2.347045646279882e-18)
    sum e = 0.06836285606680839
    sum de = -2.8731357570865868e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003528974007661586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8603e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8934243528093936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13047737155302017, dt = 0.0003528974007661586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.17 us    (2.3%)
   patch tree reduce : 2.50 us    (0.8%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 278.25 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 7.13 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.6326678240740746
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4853779974120188e-19,-1.7067060571322447e-18,-8.395656381513443e-19)
    sum a = (-1.2266347333466993e-18,6.510807064865867e-18,2.1401808886039027e-18)
    sum e = 0.06836285624235637
    sum de = -4.662069341687669e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003546281016353881 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7088e+04 | 82944 |      1 | 1.453e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8743948288825238 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.28s (niter = 3) global walltime = 635.98s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.13083026895378633, dt = 0.0003546281016353881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 264.78 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.7039359469556193e-18,-8.388636518412434e-19)
    sum a = (-3.334913181286339e-18,4.513333023991237e-18,1.6702059443872785e-18)
    sum e = 0.06836285642818686
    sum de = -2.710505431213761e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035644729371979233 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9234e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.911719407778074 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13118489705542172, dt = 0.00035644729371979233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 318.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.216556895879279e-19,-1.7024385901033894e-18,-8.383310306168064e-19)
    sum a = (-2.7599281500300737e-18,9.253964818150966e-18,-3.267986991897692e-19)
    sum e = 0.06836285662550749
    sum de = 1.0842021724855044e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035835614934939407 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9213e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9160744131286733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1315413443491415, dt = 0.00035835614934939407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.32 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 349.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.372750763090274e-19,-1.698545462287592e-18,-8.3883962477765575e-19)
    sum a = (-4.446550908381785e-18,5.384794711989014e-18,5.400890462501441e-20)
    sum e = 0.0683628568352108
    sum de = 1.588356182691264e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035014952570520865 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9121e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9195408274398232 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.25s (niter = 3) global walltime = 640.18s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.1318997004984909, dt = 0.00035014952570520865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.52 us    (0.4%)
   gen split merge   : 1.13 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 560.96 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.289367533944492e-19,-1.6967299171042631e-18,-8.387161880525261e-19)
    sum a = (7.283143729246027e-19,6.453608033110686e-18,-2.4366204387070486e-18)
    sum e = 0.06836285545864024
    sum de = 1.805196617188365e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035171688388730977 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8272e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8855867711321875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1322498500241961, dt = 0.00035171688388730977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.97 us    (2.4%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 303.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.6326678240740744
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.037342828190786e-19,-1.6953074280946447e-18,-8.399841185579485e-19)
    sum a = (5.481523964643063e-18,7.018411037771788e-18,6.189048582815371e-19)
    sum e = 0.06836285561390797
    sum de = -9.269928574751063e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035336824662638447 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9181e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9034324170247021 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1326015669080834, dt = 0.00035336824662638447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.54 us    (1.9%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 363.51 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6326678240740746
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.197885481783886e-19,-1.691863507334516e-18,-8.392253234153321e-19)
    sum a = (7.666467083416871e-19,4.631624215317395e-18,2.9797347350093687e-18)
    sum e = 0.06836285578220155
    sum de = 4.2825985813177425e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003551067114818812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7961e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.888964287997012 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.84s (niter = 2) global walltime = 644.44s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.13295493515470977, dt = 0.0003551067114818812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.54 us    (0.7%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 348.94 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.690703055774038e-18,-8.377523526673318e-19)
    sum a = (-7.666467083416871e-19,3.900315128688333e-18,1.0899414990361122e-18)
    sum e = 0.06836285596511721
    sum de = -1.7889335846010823e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003569332925675309 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9246e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9131365530167853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13331004186619166, dt = 0.0003569332925675309 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.65 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 363.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.935288184949611e-19,-1.6894490194102954e-18,-8.376587518529734e-19)
    sum a = (-6.7464910334068465e-18,5.7860863483866155e-18,1.3593423169025576e-18)
    sum e = 0.06836285616384732
    sum de = 2.8189256484623115e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003588491020812756 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8937e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9130511838933698 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 647.25s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.1336669751587592, dt = 0.0003588491020812756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.34 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 344.17 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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 = (8.62477546884398e-20,-1.6873901537384793e-18,-8.371749937936333e-19)
    sum a = (1.4949610812662899e-18,3.734407989461265e-18,3.962202980861267e-19)
    sum e = 0.06836285637965409
    sum de = 5.2583805365546965e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003490234908167282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8956e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9182420513758959 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 648.66s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.13402582426084048, dt = 0.0003490234908167282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 330.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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 = (8.145621276130426e-20,-1.6866040413910588e-18,-8.372396466828512e-19)
    sum a = (-3.1049191687838326e-18,1.201988239558996e-17,3.861176543502756e-18)
    sum e = 0.06836285478946992
    sum de = 0
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035053882683108674 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8807e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8908401571483328 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 650.07s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.1343748477516572, dt = 0.00035053882683108674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.04 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 329.16 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6237340856481484
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.414442377663165e-19,-1.6802777086903876e-18,-8.352139732055519e-19)
    sum a = (8.8164371459294e-19,5.632158063977386e-18,6.583083652771796e-19)
    sum e = 0.06836285495069033
    sum de = -1.734723475976807e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035213731907991807 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8754e+04 | 82944 |      1 | 1.412e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8939062088949585 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 651.49s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.1347253865784883, dt = 0.00035213731907991807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 324.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1082784479396395e-19,-1.67977235075276e-18,-8.355530534142073e-19)
    sum a = (1.2649670687637836e-18,6.668329005720448e-18,-3.072678960841695e-19)
    sum e = 0.06836285512868262
    sum de = -1.723881454251952e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035382241833183695 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8453e+04 | 82944 |      1 | 1.419e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8933849907331101 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 652.91s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.13507752389756822, dt = 0.00035382241833183695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 332.14 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6237340856481484
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.145178520585395e-18,-1.6770396744974405e-18,-8.3587660714832295e-19)
    sum a = (1.629124255226085e-18,4.1737324899055054e-18,-4.448577064694619e-18)
    sum e = 0.06836285532451052
    sum de = 1.8431436932253575e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035559513813334905 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8827e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9033913514915024 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 654.32s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.13543134631590006, dt = 0.00035559513813334905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.29 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.6766653352843831e-18,-8.381184810741386e-19)
    sum a = (-9.813077866773595e-18,3.942840063291661e-18,-1.3705760160318313e-18)
    sum e = 0.06836285553937674
    sum de = -6.776263578034403e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.0003574565995462681 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7600e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8889866606351768 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 655.76s (max_walltime = 657.41s)  [SPH][rank=0]
---------------- t = 0.13578694145403342, dt = 0.00032416965707771084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.58 us    (0.8%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 299.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.6746439035338727e-18,-8.380823289269258e-19)
    sum a = (6.037342828190786e-18,7.633525232667814e-19,-5.291313816020564e-18)
    sum e = 0.06836285089430193
    sum de = -2.439454888092385e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00034925958359898564 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7407e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8077023327897279 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 657.20s (max_walltime = 657.41s)  [SPH][rank=0]
Info: iteration since start : 451                                                     [SPH][rank=0]
Info: time since start : 657.2045421930001 (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/dustysod_128/l2_error_0000005.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 450)
   -> walltime = 657.4132642650001 (current = 659.502042165)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 657.41s)      [SPH][rank=0]
---------------- t = 0.13611111111111113, dt = 0.00034925958359898564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 318.97 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.551964830778767e-19,-1.6748123561797485e-18,-8.405268906470986e-19)
    sum a = (2.8365928208642422e-18,5.163185897858995e-18,-1.597669458332678e-18)
    sum e = 0.06836285448894806
    sum de = 1.043544591017298e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.06e+00 |
+-------------+----------+
Info: cfl dt = 0.00035076316632116916 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8826e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8917286518258628 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 660.91s > 657.41s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 21):
   -> walltime = 660.9132333800001 >= 657.4132642650001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000021.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (54.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000021.sham                 [Shamrock Dump][rank=0]
              - took 6.23 ms, bandwidth = 2.88 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 660.9132333800001 -> 690.9132333800001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.13646037069471012)
   -> iter = None (current = 451)
   -> walltime = 690.9132333800001 (current = 660.9237419460001)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 690.91s)      [SPH][rank=0]
---------------- t = 0.13646037069471012, dt = 0.00035076316632116916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.54 us    (1.5%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 274.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.024895218793857e-19,-1.6726037548227096e-18,-8.404784344272912e-19)
    sum a = (6.938152710492268e-18,3.1690060420592705e-18,-4.210449176865244e-18)
    sum e = 0.0683628546780797
    sum de = 1.1899118843028411e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035235647315164375 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8904e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8967586499725885 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.05s (niter = 5) global walltime = 662.33s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.1368111338610313, dt = 0.00035235647315164375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 308.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.647795669321478e-19,-1.6714245863015785e-18,-8.424020986585736e-19)
    sum a = (-1.0733053916783619e-18,6.386526446130789e-18,-6.2969653568818944e-18)
    sum e = 0.06836285488561603
    sum de = 1.1519648082658485e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003540356695116038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9075e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.903453337650421 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13716349033418296, dt = 0.0003540356695116038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.1%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 322.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4916018021104833e-19,-1.6690849662199694e-18,-8.450319736418414e-19)
    sum a = (5.711517977145569e-18,1.927098268819827e-18,-3.6298291459755145e-18)
    sum e = 0.06836285511242861
    sum de = 3.848917712323541e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035580204434897524 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6847e+04 | 82944 |      1 | 1.459e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8735186135575527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13751752600369457, dt = 0.00035580204434897524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 321.67 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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.6324387538580245
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.666467083416871e-20,-1.668991381416705e-18,-8.458619187532925e-19)
    sum a = (-2.8749251562813265e-19,2.5928231253212215e-18,-1.0535164400646887e-17)
    sum e = 0.06836285535850264
    sum de = -1.4907779871675686e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035765669249609154 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8691e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9063530913402674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13787332804804356, dt = 0.00035765669249609154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 340.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.6323181905864195
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.672690888115335e-19,-1.6679057976988383e-18,-8.508386960025625e-19)
    sum a = (4.599880250050123e-19,2.262356468034092e-18,-4.9786510026106554e-18)
    sum e = 0.06836285562411723
    sum de = 1.5449880957918438e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003596007093551704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8688e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9110248462210213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13823098474053966, dt = 0.0003596007093551704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.19 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 361.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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 = (-2.4436863828391274e-19,-1.6673068549579465e-18,-8.516412851889652e-19)
    sum a = (-7.283143729246027e-19,3.905555877671138e-18,-6.340031050040219e-18)
    sum e = 0.06836285590954846
    sum de = 1.52059354691092e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003496081685675673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7560e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.898378116803746 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.27s (niter = 3) global walltime = 669.47s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.13859058544989483, dt = 0.0003496081685675673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.26 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 342.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.6321976273148147
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406633e-19,-1.6656410454598407e-18,-8.540982207074854e-19)
    sum a = (1.399130242723579e-18,1.0765995767532675e-18,-5.769773704633638e-18)
    sum e = 0.06836285438828488
    sum de = -1.4257258568184383e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035114992931055427 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8927e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8941563359060138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1389401936184624, dt = 0.00035114992931055427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 273.85 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6323181905864195
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.558188635477232e-19,-1.6664271578072614e-18,-8.560588887878947e-19)
    sum a = (-4.005729051085315e-18,1.062823893712753e-18,-2.4609101112738696e-18)
    sum e = 0.06836285461454451
    sum de = 1.1248597539537109e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003527747946020265 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8852e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8969574312995228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13929134354777298, dt = 0.0003527747946020265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.80 us    (2.1%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 341.18 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6323181905864195
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-20,-1.6663897238859556e-18,-8.562867905817733e-19)
    sum a = (-9.77474553135651e-19,6.025064502002501e-18,-8.461985064320256e-18)
    sum e = 0.06836285485782187
    sum de = -1.9813794702172594e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003544862129269676 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8870e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9013762450021647 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.26s (niter = 3) global walltime = 673.70s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.139644118342375, dt = 0.0003544862129269676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.14 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 346.60 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6323181905864195
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4978256068089474e-19,-1.6627399165586454e-18,-8.603913431531261e-19)
    sum a = (-4.446550908381785e-18,1.1701843800176336e-18,-8.923903208969301e-18)
    sum e = 0.06836285511765242
    sum de = -7.887570804832045e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003562852078906043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8771e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9042245494413179 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13999860455530197, dt = 0.0003562852078906043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.27 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 352.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.6323181905864195
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.874925156281327e-20,-1.6631329727323558e-18,-8.636292961175138e-19)
    sum a = (-4.638212585467207e-18,3.2846019910514157e-18,-6.670352042893235e-18)
    sum e = 0.06836285539402155
    sum de = -2.4313233717987437e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003581728956731291 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9083e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9136514434578816 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14035488976319258, dt = 0.0003581728956731291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 343.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6323181905864197
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084353e-19,-1.6619538042112247e-18,-8.656296437587968e-19)
    sum a = (3.679904200040098e-18,9.05152217172949e-19,-5.984543053559526e-18)
    sum e = 0.06836285568685221
    sum de = 1.1302807648161384e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034994008960620546 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9066e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9182299673661908 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.83s (niter = 2) global walltime = 677.92s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.1407130626588657, dt = 0.00034994008960620546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.46 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 365.15 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6320770640432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.647795669321478e-19,-1.6609805222572753e-18,-8.676344373100748e-19)
    sum a = (5.174865281306388e-19,3.4252037994757992e-18,-4.888452536313162e-18)
    sum e = 0.06836285444847501
    sum de = -3.3610267347050637e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035148387662596386 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8487e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8883289846702707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14106300274847192, dt = 0.00035148387662596386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.33 us    (2.4%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 320.22 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 6.60 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.63207706404321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.827009737009971e-19,-1.6600633911852844e-18,-8.691122582898433e-19)
    sum a = (-3.7374027031657245e-18,6.899820375075184e-18,-5.96945178523261e-18)
    sum e = 0.06836285468445583
    sum de = 8.212831456577696e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035311092987564064 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8503e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.892481770517029 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 680.76s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.14141448662509787, dt = 0.00035311092987564064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 342.17 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.63207706404321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.293716320326597e-19,-1.65645101777928e-18,-8.714278347677215e-19)
    sum a = (-1.7057889260602538e-18,1.2384638524793153e-18,-6.5422832841969865e-18)
    sum e = 0.06836285493401291
    sum de = -9.676504389433127e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035482430289635514 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8853e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9019806288266665 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 682.17s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.1417675975549735, dt = 0.00035482430289635514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 272.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6320770640432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.222780700577744e-19,-1.6568815078742961e-18,-8.738873500127126e-19)
    sum a = (3.660738032331556e-18,2.1118721043849913e-18,-4.374486482897052e-18)
    sum e = 0.06836285519663127
    sum de = -1.043544591017298e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035662499440716414 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8741e+04 | 82944 |      1 | 1.412e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9046270727297838 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 683.58s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.14212242185786986, dt = 0.00035662499440716414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 350.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.63207706404321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2458009010552416e-19,-1.656151546408834e-18,-8.75047855574921e-19)
    sum a = (5.1556991135978454e-18,3.872164819866412e-19,-4.420181151211542e-18)
    sum e = 0.0683628554722154
    sum de = -7.589415207398531e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003585140550674507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8553e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9063062522124881 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 685.00s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.14247904685227702, dt = 0.0003585140550674507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.38 us    (0.7%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 330.72 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6320770640432098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156193867210995e-19,-1.656432300818627e-18,-8.76630112950717e-19)
    sum a = (1.399130242723579e-18,8.678680315524254e-19,-5.921425796356799e-18)
    sum e = 0.0683628557605611
    sum de = -8.72782748850831e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003604925745239439 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7695e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8977619317319401 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 686.44s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.14283756090734448, dt = 0.0003604925745239439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.13 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 305.76 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.6233723958333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4978256068089474e-19,-1.6558707919990409e-18,-8.790311994900198e-19)
    sum a = (2.606598808361736e-18,2.9596755541175365e-18,-7.05488820304573e-18)
    sum e = 0.06836285606095859
    sum de = 6.776263578034403e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003504136641970586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8796e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9199406331085558 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 687.85s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.14319805348186843, dt = 0.0003504136641970586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 315.09 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6233723958333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.031119023492321e-19,-1.6548787930844387e-18,-8.81667796735159e-19)
    sum a = (-1.514127248974832e-18,1.5865993206227572e-18,-3.843693640389522e-18)
    sum e = 0.06836285452718299
    sum de = 6.5865281978494394e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003519925069338264 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8494e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.889630427414137 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 689.27s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.14354846714606548, dt = 0.0003519925069338264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.623372395833333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-19,-1.6546167556352983e-18,-8.825064312233667e-19)
    sum a = (-4.887372765678255e-18,3.280109920494726e-18,-6.337423837741136e-18)
    sum e = 0.0683628547538682
    sum de = -1.1546753136970622e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003536547218288318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7931e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8850445339743361 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 690.70s (max_walltime = 690.91s)  [SPH][rank=0]
---------------- t = 0.1439004596529993, dt = 0.0003536547218288318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 348.05 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6233723958333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.629124255226085e-19,-1.6530819648617627e-18,-8.851202430336562e-19)
    sum a = (1.3416317395979523e-19,-2.2729877016849237e-19,-5.467568414573807e-18)
    sum e = 0.06836285499094853
    sum de = 3.5236570605778894e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003554037639503592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7249e+04 | 82944 |      1 | 1.449e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8787517891981015 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 692.15s > 690.91s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 22):
   -> walltime = 692.150261291 >= 690.9132333800001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000022.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (56.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000022.sham                 [Shamrock Dump][rank=0]
              - took 9.69 ms, bandwidth = 1.85 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 692.150261291 -> 722.150261291

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.14425411437482813)
   -> iter = None (current = 473)
   -> walltime = 722.150261291 (current = 692.164531215)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 722.15s)      [SPH][rank=0]
---------------- t = 0.14425411437482813, dt = 0.0003554037639503592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 309.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6233723958333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.283143729246027e-19,-1.6537557754452663e-18,-8.869657342090754e-19)
    sum a = (-2.932423659406953e-18,1.766581614260786e-18,-6.50993690329302e-18)
    sum e = 0.06836285523759793
    sum de = 7.562310153086393e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035724063327290166 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8029e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.895121532775773 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.72s (niter = 4) global walltime = 693.59s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.14460951813877848, dt = 0.00035724063327290166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 271.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.6233723958333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1116377270954463e-18,-1.6527076256487054e-18,-8.895083002025079e-19)
    sum a = (6.2385875891304786e-18,5.357093610222762e-18,5.2289508780951884e-20)
    sum e = 0.06836285549405054
    sum de = -1.8973538018496328e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035916638268931373 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8486e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9068458874445748 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1449667587720514, dt = 0.00035916638268931373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 327.07 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.6233723958333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.558188635477232e-19,-1.6501808359605674e-18,-8.883236263557522e-19)
    sum a = (7.762297921959581e-19,-9.324041118835324e-19,-7.747557389119576e-18)
    sum e = 0.0683628557602574
    sum de = 5.231275482242559e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035067547321616406 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8586e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9132820889628979 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14532592515474071, dt = 0.00035067547321616406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.3%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 294.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6233723958333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3478555442964167e-19,-1.6517343436947558e-18,-8.924253879441614e-19)
    sum a = (-7.033983549034978e-18,6.792759360140749e-19,-1.86724599941072e-18)
    sum e = 0.06836285444849338
    sum de = 6.776263578034403e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035225662131537367 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8654e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8927241841632869 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14567660062795687, dt = 0.00035225662131537367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.5%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 270.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.6233723958333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0062238046984643e-19,-1.6505926090949306e-18,-8.920125510034151e-19)
    sum a = (-2.1082784479396394e-18,8.990130540788065e-19,-3.973116383550712e-18)
    sum e = 0.06836285464959747
    sum de = 3.6591823321385775e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035392124617866745 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8635e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.896458112387893 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.68s (niter = 4) global walltime = 699.26s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.14602885724927225, dt = 0.00035392124617866745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 310.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6323061342592595
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.6505926090949306e-18,-8.938061967120312e-19)
    sum a = (9.276425170934414e-18,1.8321658443884537e-18,-1.349959871446092e-18)
    sum e = 0.06836285485972593
    sum de = 4.824699667560495e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003556724494638851 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8875e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9043869516679399 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14638277849545092, dt = 0.0003556724494638851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 345.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6323061342592593
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.389547158869308e-19,-1.6501246850786088e-18,-8.938458508474813e-19)
    sum a = (-3.354079348994881e-19,-6.967950111851643e-19,-4.161637994956769e-18)
    sum e = 0.06836285507916125
    sum de = 1.3091741232762466e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003575112358431107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8604e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9046836782520634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1467384509449148, dt = 0.0003575112358431107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 310.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.6323061342592595
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1643446882939374e-18,-1.6510979670325583e-18,-8.958170309183293e-19)
    sum a = (3.52657485837176e-18,1.1230176391723932e-18,-8.124995649364664e-18)
    sum e = 0.06836285530838045
    sum de = -1.531435568635775e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003594386743970708 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8805e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9124761102971948 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1470959621807579, dt = 0.0003594386743970708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.45 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 325.33 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.6323061342592593
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.6501621189999146e-18,-8.99399567000162e-19)
    sum a = (2.9132574916984108e-18,1.414478150458935e-18,-7.044232428330329e-18)
    sum e = 0.06836285554799075
    sum de = -9.98821251402271e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003495528426331915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8027e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9052604920413038 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.25s (niter = 3) global walltime = 704.93s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.147455400855155, dt = 0.0003495528426331915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.01 us    (0.5%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 360.76 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6323061342592595
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.51649702090434e-19,-1.6488144978329077e-18,-9.016914318500082e-19)
    sum a = (-8.8164371459294e-19,-1.6349639469497815e-18,-6.533794962232899e-18)
    sum e = 0.06836285401752198
    sum de = -4.87890977618477e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003510816022128716 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8150e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8822245011107493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14780495369778818, dt = 0.0003510816022128716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.13 us    (2.7%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 275.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.6323061342592593
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3061639297235256e-19,-1.6507610617408065e-18,-9.03884514955949e-19)
    sum a = (1.4470456619949344e-18,2.839288063198256e-18,-5.02577714293719e-18)
    sum e = 0.06836285418906622
    sum de = 2.9544509200229996e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035269295707784465 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6791e+04 | 82944 |      1 | 1.461e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8653726721148685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14815603530000104, dt = 0.00035269295707784465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.8%)
   patch tree reduce : 2.43 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 402.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632185570987654
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.654019474019942e-19,-1.6480096685248342e-18,-9.05369498151984e-19)
    sum a = (-2.20410928648235e-19,-7.359808400080196e-18,-6.359945847173578e-18)
    sum e = 0.0683628543704926
    sum de = 1.917682592583736e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003543903012847106 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6486e+04 | 82944 |      1 | 1.468e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8646824084259437 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.85s (niter = 2) global walltime = 709.29s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.1485087282570789, dt = 0.0003543903012847106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 267.37 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8687013515828623e-19,-1.6532317005469858e-18,-9.078362571360216e-19)
    sum a = (-3.6990703677486406e-18,-1.2812882584530891e-18,-5.329228391558855e-18)
    sum e = 0.06836285456271915
    sum de = 5.705613932704967e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003561746303871135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7389e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8827309329963043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1488631185583636, dt = 0.0003561746303871135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.31 us    (2.5%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 307.22 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.235228309974672e-19,-1.6524268712389122e-18,-9.096000883092405e-19)
    sum a = (4.446550908381785e-18,-9.72158936310235e-19,-6.760886235886947e-18)
    sum e = 0.06836285476660267
    sum de = -7.643625316022806e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035804703777367954 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8452e+04 | 82944 |      1 | 1.419e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9036075240987547 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 712.15s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.1492192931887507, dt = 0.00035804703777367954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.37 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 317.16 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.439337596457023e-19,-1.6530819648617627e-18,-9.122846664931406e-19)
    sum a = (2.9611729109697662e-18,-4.3153824481264495e-19,-8.437316575478178e-18)
    sum e = 0.06836285498281996
    sum de = -4.1470733097570545e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034987384090152864 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6695e+04 | 82944 |      1 | 1.463e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8810548563840516 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 713.62s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.14957734022652439, dt = 0.00034987384090152864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 262.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.283143729246027e-19,-1.6534001531928616e-18,-9.155214975423512e-19)
    sum a = (3.0474206656582063e-18,2.90067969413968e-18,-5.543502649628444e-18)
    sum e = 0.0683628537159035
    sum de = -5.990217002982412e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035140272993410405 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6064e+04 | 82944 |      1 | 1.479e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.85136110021224 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 715.10s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.1499272140674259, dt = 0.00035140272993410405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.02 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 378.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2218431914195638e-18,-1.6510792500719053e-18,-9.169820067917474e-19)
    sum a = (-3.8332335417084353e-19,-6.598102969350868e-19,-5.254997775187253e-18)
    sum e = 0.06836285387949267
    sum de = -1.81603863891322e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003530142644013742 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8089e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8859670761456695 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 716.53s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.15027861679736002, dt = 0.0003530142644013742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 303.72 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.318611539120454e-19,-1.6528012104519697e-18,-9.187823477507427e-19)
    sum a = (2.050779944814013e-18,1.8701238405924806e-18,-2.9857997741585775e-18)
    sum e = 0.06836285405537904
    sum de = -1.7618285302889447e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003547114395482614 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8265e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8927292414912359 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 717.95s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.1506316310617614, dt = 0.0003547114395482614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 4.14 us    (1.4%)
   gen split merge   : 1.61 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.89 us    (0.6%)
   LB compute        : 274.03 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.62477546884398e-20,-1.6516594758521445e-18,-9.194412598940192e-19)
    sum a = (-3.6894872838943694e-18,3.4911623688165246e-18,-2.059570849241674e-18)
    sum e = 0.06836285424457815
    sum de = 9.242823520438925e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003564952342023177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8770e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9047867607810164 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 719.36s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.15098634250130966, dt = 0.0003564952342023177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 267.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.632185570987654
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1686414766079237e-19,-1.6495631762590226e-18,-9.199972165309833e-19)
    sum a = (-2.8653420724270553e-18,-5.796268374981779e-19,-1.6126017824579419e-18)
    sum e = 0.06836285444799409
    sum de = -5.1228552649940085e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035836669484998776 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7412e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.888334295276899 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 720.81s (max_walltime = 722.15s)  [SPH][rank=0]
---------------- t = 0.15134283773551196, dt = 0.00035836669484998776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 269.59 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6321855709876543
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-19,-1.6506300430162365e-18,-9.205126298458372e-19)
    sum a = (-4.772375759427002e-18,1.293267113270928e-18,-3.3168331841082165e-18)
    sum e = 0.06836285466627211
    sum de = 6.938893903907228e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.000360326808403202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6875e+04 | 82944 |      1 | 1.458e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8846386976848621 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 722.27s > 722.15s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 23):
   -> walltime = 722.269167882 >= 722.150261291
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000023.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (52.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000023.sham                 [Shamrock Dump][rank=0]
              - took 6.30 ms, bandwidth = 2.85 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 722.269167882 -> 752.269167882

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.15170120443036195)
   -> iter = None (current = 494)
   -> walltime = 752.269167882 (current = 722.279993027)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 752.27s)      [SPH][rank=0]
---------------- t = 0.15170120443036195, dt = 0.000360326808403202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.37 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 331.55 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6321855709876538
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9707559948240377e-19,-1.6493760066524939e-18,-9.219754854246475e-19)
    sum a = (5.347360790683267e-18,-4.802023425101153e-19,-5.936725002064477e-18)
    sum e = 0.06836285490018104
    sum de = -1.1384122811097797e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035035627085239777 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8627e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9168722325038278 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.08s (niter = 5) global walltime = 723.70s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15206153123876515, dt = 0.00035035627085239777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.49 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 315.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (59.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321855709876545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.42066618236163e-19,-1.6505177412523191e-18,-9.24572910606191e-19)
    sum a = (-1.5428765005376453e-18,5.577654274556219e-19,-3.3332679052542874e-18)
    sum e = 0.06836285339237032
    sum de = -1.3417001884508117e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035191978198636695 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8140e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8841055005637941 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15241188750961754, dt = 0.00035191978198636695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.3%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 315.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6321855709876547
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1499700625125307e-19,-1.6491888370459652e-18,-9.252854110557141e-19)
    sum a = (4.887372765678255e-18,3.4406265750537667e-18,-4.659159471297927e-18)
    sum e = 0.06836285357050263
    sum de = 1.3850682753502319e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035356605553238564 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7933e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8848873971134791 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1527638072916039, dt = 0.00035356605553238564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.0%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 333.06 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6232518325617287
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271089e-21,-1.6479160837215698e-18,-9.271241671972555e-19)
    sum a = (3.3684539747762877e-18,3.2642379378610897e-19,-6.967170979402646e-18)
    sum e = 0.06836285376358416
    sum de = 4.092863201132779e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003552984743350254 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8500e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8977227309946204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1531173733471363, dt = 0.0003552984743350254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 336.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6232518325617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947735794346539e-19,-1.6482904229346272e-18,-9.300253935903152e-19)
    sum a = (9.041639616504773e-18,-2.494746251500166e-18,-5.378697344042127e-18)
    sum e = 0.06836285397229216
    sum de = -8.375461782450522e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003571180157692038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8686e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9049927441081447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1534726718214713, dt = 0.0003571180157692038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 369.08 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.6232518325617287
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.6495444592983697e-18,-9.316774831748915e-19)
    sum a = (2.37660479585923e-18,-2.290207305485567e-18,-4.332728886617364e-18)
    sum e = 0.06836285419733566
    sum de = -2.6698478497455547e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035902572861867496 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8479e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9064198529338064 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.26s (niter = 3) global walltime = 730.81s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15382978983724052, dt = 0.00035902572861867496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 300.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.6232518325617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.024895218793857e-19,-1.6511166839932112e-18,-9.330184061601348e-19)
    sum a = (-5.222780700577744e-19,3.104619697413387e-18,-3.692631140956978e-18)
    sum e = 0.06836285443926922
    sum de = 3.74049749507499e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035054942529187227 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8613e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9133537855746472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1541888155658592, dt = 0.00035054942529187227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.6%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 281.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (60.7%)
Warning: High interface/patch volume ratio.                                  [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 = (4.120726057336568e-19,-1.6484214416591973e-18,-9.342363001087436e-19)
    sum a = (3.584073361497387e-18,5.192833563533146e-18,-4.06297588296202e-19)
    sum e = 0.0683628531822087
    sum de = -1.0516761073109393e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003521109185813796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8568e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.891102451464612 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15453936499115106, dt = 0.0003521109185813796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.14 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 318.66 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6232518325617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.102054643241175e-19,-1.646400009908687e-18,-9.337922246641144e-19)
    sum a = (4.1686414766079237e-19,8.901187543765611e-18,1.5662884405410864e-18)
    sum e = 0.06836285337725857
    sum de = 1.3186608922854948e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035375516938439836 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8106e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8880178825469248 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.26s (niter = 3) global walltime = 735.07s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15489147590973243, dt = 0.00035375516938439836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.35 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 317.31 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.6232518325617284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.216556895879279e-19,-1.6427314856207239e-18,-9.328861156933238e-19)
    sum a = (-3.564907193788845e-18,3.0787154238698102e-18,2.5486581774785723e-18)
    sum e = 0.06836285358809163
    sum de = 1.3064636178450328e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035548523091874956 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8452e+04 | 82944 |      1 | 1.419e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8974734541371334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15524523107911684, dt = 0.00035548523091874956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.3%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 309.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6230348186728398
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.510273216205876e-19,-1.6418705054306917e-18,-9.318071194732705e-19)
    sum a = (-2.73117889846726e-18,-5.335082464494983e-19,-5.290971083942858e-18)
    sum e = 0.06836285381493645
    sum de = -1.1140177322288558e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003573020827691213 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8685e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.905449141425491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15560071631003558, dt = 0.0003573020827691213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (1.5%)
   patch tree reduce : 2.54 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 434.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 16.21 us   (95.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6230348186728396
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406633e-19,-1.642843787384641e-18,-9.350734599939715e-19)
    sum a = (-1.4470456619949344e-18,4.7783651868359215e-18,-3.287429956554725e-18)
    sum e = 0.0683628540583478
    sum de = -1.4270811095340452e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035920676685610985 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8791e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9117272505511557 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.84s (niter = 2) global walltime = 739.32s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.1559580183928047, dt = 0.00035920676685610985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 273.87 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6228178047839508
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1686414766079237e-19,-1.640803638673478e-18,-9.358876077571458e-19)
    sum a = (-1.1068461851683107e-18,8.433113791758558e-19,2.2474718374990793e-18)
    sum e = 0.06836285431849959
    sum de = 1.7896112109588858e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034950577472044395 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6664e+04 | 82944 |      1 | 1.464e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8834298914826821 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15631722515966082, dt = 0.00034950577472044395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.90 us    (2.7%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 268.74 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.622697241512346
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922840575552682e-19,-1.641103110043924e-18,-9.340964694393728e-19)
    sum a = (1.0014322627713287e-18,3.633935344676641e-18,-1.0149988829282637e-18)
    sum e = 0.06836285291256244
    sum de = 8.05020113070487e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003510159672139533 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8001e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8798477825785498 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 742.21s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15666673093438127, dt = 0.0003510159672139533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 259.68 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.631401909722222
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0062238046984643e-18,-1.6392501309392896e-18,-9.350186020015143e-19)
    sum a = (-5.481523964643063e-18,3.6984714250077485e-18,1.5864391950814299e-18)
    sum e = 0.06836285311612808
    sum de = 5.034763838479561e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035260807133974284 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7613e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8777390209409638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 743.65s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15701774690159523, dt = 0.00035260807133974284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 317.20 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (77.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6312813464506173
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.481029211029913e-19,-1.6385201694738275e-18,-9.340099305476672e-19)
    sum a = (-5.1652821974521166e-18,5.939565425740176e-18,-1.7627159237834172e-18)
    sum e = 0.06836285333457512
    sum de = -1.708296048022473e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035428539544678217 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7994e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8875513269124361 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 745.08s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15737035497293497, dt = 0.00035428539544678217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 273.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6312813464506173
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.6353008522415332e-18,-9.3520627593222e-19)
    sum a = (1.6962058422059826e-18,3.15493088764831e-19,2.4980992954242805e-18)
    sum e = 0.06836285356772832
    sum de = -6.701724678676024e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035604889812986375 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8325e+04 | 82944 |      1 | 1.422e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8968615694802131 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 746.51s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15772464036838174, dt = 0.00035604889812986375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.17 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 316.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.631281346450617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.174865281306388e-19,-1.6366297564478872e-18,-9.33618479512846e-19)
    sum a = (-2.6161818922160074e-18,1.9288950970425027e-18,3.064378503203545e-18)
    sum e = 0.06836285381579307
    sum de = -5.285485590866834e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003578996421802926 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8181e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8991073711915625 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 747.93s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15808068926651161, dt = 0.0003578996421802926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 327.79 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.6312813464506168
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0062238046984643e-19,-1.6352072674382688e-18,-9.324410687099144e-19)
    sum a = (-4.211765353952143e-18,5.2429950180828466e-18,-3.3543745980645115e-18)
    sum e = 0.06836285407893944
    sum de = -1.1363794020363693e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003497067602158217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8201e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9040926835908939 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 749.36s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15843858890869192, dt = 0.0003497067602158217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.31 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 311.87 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.6312813464506168
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.756074117261118e-19,-1.6327553455927426e-18,-9.347795150951764e-19)
    sum a = (-2.7263873565401246e-18,2.154397038988319e-18,-2.1734503539914148e-18)
    sum e = 0.06836285290440901
    sum de = -4.2012834183813297e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035121505588790736 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7354e+04 | 82944 |      1 | 1.446e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8705271250782091 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 750.81s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15878829566890773, dt = 0.00035121505588790736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 299.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.631281346450617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.558188635477232e-19,-1.632830213435354e-18,-9.353066505191272e-19)
    sum a = (-1.0110153466255999e-18,4.027590461127871e-18,2.9973143197148404e-19)
    sum e = 0.06836285311542109
    sum de = -9.954331196132538e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035280541532662615 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7493e+04 | 82944 |      1 | 1.443e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8764130504980452 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 752.25s (max_walltime = 752.27s)  [SPH][rank=0]
---------------- t = 0.15913951072479565, dt = 0.00035280541532662615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 264.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.631401909722222
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.056014242286178e-19,-1.631201837858554e-18,-9.347445030596802e-19)
    sum a = (1.030181514334142e-18,3.0865016795014057e-18,1.3660977166864081e-18)
    sum e = 0.06836285333955745
    sum de = -1.0313473165768361e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035448081461363393 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7779e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8847609366854521 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 753.69s > 752.27s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 24):
   -> walltime = 753.688049168 >= 752.269167882
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000024.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (53.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000024.sham                 [Shamrock Dump][rank=0]
              - took 6.10 ms, bandwidth = 2.94 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 753.688049168 -> 783.688049168

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.15949231614012227)
   -> iter = None (current = 516)
   -> walltime = 783.688049168 (current = 753.6985907620001)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 783.69s)      [SPH][rank=0]
---------------- t = 0.15949231614012227, dt = 0.00035448081461363393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 269.34 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.6314019097222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.803989536532473e-19,-1.630621612078315e-18,-9.340752146822811e-19)
    sum a = (2.9276321174798175e-18,-2.3999635627540156e-18,-5.567883454428159e-18)
    sum e = 0.06836285357633647
    sum de = -1.4995871298190133e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003562422159472928 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6985e+04 | 82944 |      1 | 1.456e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8767422319991715 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.83s (niter = 4) global walltime = 755.16s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.15984679695473591, dt = 0.0003562422159472928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 336.03 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.6311607831790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7374027031657247e-19,-1.6318756484420575e-18,-9.372678022177486e-19)
    sum a = (1.1212208109497173e-18,1.795330865823599e-18,-2.31426352047389e-18)
    sum e = 0.06836285382583909
    sum de = 1.2658060363768264e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035809066700100085 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6541e+04 | 82944 |      1 | 1.467e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8742319894416358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1602030391706832, dt = 0.00035809066700100085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.47 us    (2.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 341.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6311607831790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.535168434999733e-19,-1.6308836495274551e-18,-9.37557983793307e-19)
    sum a = (1.4757949135577477e-18,-8.967670188004617e-19,-4.115522924552644e-18)
    sum e = 0.0683628540881884
    sum de = -7.66395410675691e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00036002717754661214 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8624e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9111364841811007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1605611298376842, dt = 0.00036002717754661214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.17 us    (2.4%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 279.46 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.631160783179012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.020598430479871e-18,-1.630921083448761e-18,-9.393511627463774e-19)
    sum a = (-3.449910187537592e-18,1.7730202487253744e-18,-3.616301586672391e-18)
    sum e = 0.06836285436339376
    sum de = -4.655293078109635e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.000350199423096212 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8522e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9144781295634645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1609211570152308, dt = 0.000350199423096212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 328.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.631160783179012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8207859323115067e-19,-1.6302659898259104e-18,-9.405576100626785e-19)
    sum a = (-5.1556991135978454e-18,4.043162972391061e-18,-5.338257404650007e-18)
    sum e = 0.06836285294831702
    sum de = -6.396792817664476e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003517418502721113 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6676e+04 | 82944 |      1 | 1.463e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8614584858024593 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 760.92s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16127135643832702, dt = 0.0003517418502721113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 298.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.631160783179012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-1.6289558025802092e-18,-9.426880913114139e-19)
    sum a = (-7.498763115967128e-18,-1.7315434639186074e-18,-2.6923021787653075e-18)
    sum e = 0.06836285315790226
    sum de = -1.531435568635775e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035336648462719463 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8680e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8958433954157198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16162309828859914, dt = 0.00035336648462719463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.0%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 333.13 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6311607831790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9741152739798443e-18,-1.630322140707869e-18,-9.432243284902917e-19)
    sum a = (-4.815499636771222e-18,9.05002481487726e-19,-3.5939922740895686e-18)
    sum e = 0.06836285337838834
    sum de = 2.923957733921845e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003550766524975113 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8521e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8975363481368229 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16197646477322633, dt = 0.0003550766524975113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.59 us    (2.8%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 279.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6311607831790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.439337596457023e-19,-1.6296857640456712e-18,-9.445620716173848e-19)
    sum a = (3.531366400298896e-18,-2.605400922879952e-18,-6.8021479928241944e-18)
    sum e = 0.06836285360928536
    sum de = -8.321251673826247e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003568733266858585 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8355e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8993235823831643 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.30s (niter = 3) global walltime = 765.18s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16233154142572384, dt = 0.0003568733266858585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 267.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.6311607831790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1068461851683107e-18,-1.6306590459996206e-18,-9.476283274639595e-19)
    sum a = (-5.749850312562653e-20,-1.397333414500903e-18,-7.509907519977958e-18)
    sum e = 0.0683628538515059
    sum de = -1.1275702593849246e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003587575509232128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7785e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.895042131005641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1626884147524097, dt = 0.0003587575509232128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 323.00 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.622456114969136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-20,-1.6309772343307194e-18,-9.50450859985783e-19)
    sum a = (-3.2869977620149835e-18,-7.186414476591978e-18,-7.0906514766827e-18)
    sum e = 0.0683628541047419
    sum de = 1.2536087619363645e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035030872878606987 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7460e+04 | 82944 |      1 | 1.444e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.894714913460981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1630471723033329, dt = 0.0002861610300004258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 334.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4019947682662363e-19,-1.6346270416580298e-18,-9.523919351184484e-19)
    sum a = (-2.597015724507465e-18,-5.660008901428862e-19,-7.558215158893634e-18)
    sum e = 0.0683628446723729
    sum de = 1.4785807127271067e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035157123702973954 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8703e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7291059630982132 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.87s (niter = 2) global walltime = 769.47s (max_walltime = 783.69s)  [SPH][rank=0]
Info: iteration since start : 528                                                     [SPH][rank=0]
Info: time since start : 769.471798864 (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/dustysod_128/l2_error_0000006.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 527)
   -> walltime = 783.688049168 (current = 771.972015679)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 783.69s)      [SPH][rank=0]
---------------- t = 0.16333333333333333, dt = 0.00035157123702973954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 330.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.622456114969136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.851904955803828e-19,-1.6344960229334596e-18,-9.551147419985794e-19)
    sum a = (1.681831216424576e-18,-7.765292635664042e-19,-2.559911687493475e-18)
    sum e = 0.0683628530377705
    sum de = 1.745565497701662e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003531665727877237 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8570e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8937305084653291 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 773.39s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16368490457036308, dt = 0.0003531665727877237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.27 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 359.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.634308853326931e-18,-9.551028928233112e-19)
    sum a = (8.576860049572625e-19,-4.095869933589553e-18,-6.880246294682724e-18)
    sum e = 0.06836285324174564
    sum de = -1.1617903904539983e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035485845718669757 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8057e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8899232133434641 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 774.82s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.1640380711431508, dt = 0.00035485845718669757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.32 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 321.30 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0728106380652126e-19,-1.6360308137069952e-18,-9.58292531477505e-19)
    sum a = (-4.79633346906268e-18,3.6409729218821215e-18,-2.251406343115187e-18)
    sum e = 0.068362853453773
    sum de = -4.79420648145934e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035663590028271855 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8310e+04 | 82944 |      1 | 1.422e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8980756891788853 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 776.24s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.1643929296003375, dt = 0.00035663590028271855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 323.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.724955093768796e-18,-1.6330548169631884e-18,-9.582672194391346e-19)
    sum a = (-3.6415718646230136e-18,-6.795005395419094e-19,-2.4813486197847916e-18)
    sum e = 0.06836285367710979
    sum de = -1.2617402782300058e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035850046192643876 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8369e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9034899512717633 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.42s (niter = 1) global walltime = 777.66s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16474956550062023, dt = 0.00035850046192643876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 271.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.622456114969136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.62477546884398e-20,-1.6347767773432528e-18,-9.592640342368433e-19)
    sum a = (3.1432515042009172e-18,-3.1812843682475555e-18,-6.621449064948099e-18)
    sum e = 0.0683628539110697
    sum de = 1.9505474709372028e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003604531020491714 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8463e+04 | 82944 |      1 | 1.419e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.909678042522138 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 779.08s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16510806596254665, dt = 0.0003604531020491714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 270.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.6224561149691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.995651213617895e-19,-1.6369479447789861e-18,-9.623417223870437e-19)
    sum a = (6.20504679564053e-19,-3.479857324582189e-19,-6.457177750256068e-18)
    sum e = 0.06836285415620262
    sum de = 2.0345731393048294e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035052639432598683 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7769e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.903774836043325 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 780.52s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16546851906459584, dt = 0.00035052639432598683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 340.97 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7728705130401514e-19,-1.635488021848062e-18,-9.646221794496274e-19)
    sum a = (-4.932892413986043e-18,-6.123141375823557e-18,-4.795514615094907e-18)
    sum e = 0.06836285271012017
    sum de = 5.488773498207866e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000352085069260668 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8377e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8881332456284526 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 781.94s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16581904545892182, dt = 0.000352085069260668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 323.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6224561149691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4853779974120188e-19,-1.6396244701523469e-18,-9.659485058444284e-19)
    sum a = (1.5428765005376453e-18,5.698640708216392e-18,-4.162795304908952e-18)
    sum e = 0.06836285289146724
    sum de = -2.222614453595284e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035372596377918053 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6568e+04 | 82944 |      1 | 1.466e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8644376713486244 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 783.41s (max_walltime = 783.69s)  [SPH][rank=0]
---------------- t = 0.16617113052818247, dt = 0.00035372596377918053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 264.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0972631013140396e-18,-1.6345521738154183e-18,-9.673427004704885e-19)
    sum a = (7.160959410104072e-18,-7.847647262536683e-19,-3.110419332410883e-18)
    sum e = 0.06836285308336834
    sum de = -1.0154230971684552e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035545241370900854 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7634e+04 | 82944 |      1 | 1.439e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8848357735562787 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 784.85s > 783.69s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 25):
   -> walltime = 784.850860718 >= 783.688049168
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000025.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (52.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000025.sham                 [Shamrock Dump][rank=0]
              - took 6.27 ms, bandwidth = 2.86 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 784.850860718 -> 814.850860718

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.16652485649196164)
   -> iter = None (current = 536)
   -> walltime = 814.850860718 (current = 784.8616532210001)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 814.85s)      [SPH][rank=0]
---------------- t = 0.16652485649196164, dt = 0.00035545241370900854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 269.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.864352565200757e-19,-1.6359746628250367e-18,-9.682954390413407e-19)
    sum a = (-2.9180490336255464e-18,-6.128981067547253e-18,-5.9273355428759465e-18)
    sum e = 0.06836285328614092
    sum de = 2.0057740190981832e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035726538718261936 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7302e+04 | 82944 |      1 | 1.447e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8840390114991571 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.79s (niter = 4) global walltime = 786.31s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.16688030890567065, dt = 0.00035726538718261936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.38 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 344.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (76.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.631389853395062
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2999401250250614e-19,-1.6393811496638595e-18,-9.708537850748519e-19)
    sum a = (-1.9046379160363787e-18,9.506718654807366e-19,-5.7496241257531486e-18)
    sum e = 0.06836285350047533
    sum de = -2.2483642551918148e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003591659252870231 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8555e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9079676324033858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16723757429285327, dt = 0.0003591659252870231 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.82 us    (2.7%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 265.03 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313898533950615
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.827009737009971e-19,-1.6375094535985723e-18,-9.729309428176794e-19)
    sum a = (1.4853779974120188e-19,-8.021340657395347e-19,-5.013691570789806e-18)
    sum e = 0.06836285372690983
    sum de = -1.0503208545953324e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003507200649316525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7904e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9026615271847214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1675967402181403, dt = 0.0003507200649316525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.15 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 355.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3943387007964434e-18,-1.637996094575547e-18,-9.744894449843775e-19)
    sum a = (4.995182459038805e-18,-2.4047551046811513e-19,-5.9978796197771095e-18)
    sum e = 0.06836285249660308
    sum de = 7.9180639909332e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035227762619621886 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8299e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8874436655480543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16794746028307195, dt = 0.00035227762619621886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.47 us    (2.2%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 322.28 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313898533950613
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270696119849099e-20,-1.6377714910477125e-18,-9.768399934888114e-19)
    sum a = (-1.262571297800216e-18,3.541847898264505e-18,-4.17842926099038e-18)
    sum e = 0.06836285267122455
    sum de = -5.800481622797449e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035391753663433694 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8278e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8910541572588995 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.29s (niter = 3) global walltime = 792.01s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.16829973790926817, dt = 0.00035391753663433694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 385.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4082185729647e-19,-1.636217983313524e-18,-9.779817485103305e-19)
    sum a = (7.249602935756079e-18,-2.0033137325983264e-18,-4.633904073811073e-18)
    sum e = 0.06836285285771826
    sum de = -1.0442222173751015e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003556428178196485 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8219e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8943060521418531 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1686536554459025, dt = 0.0003556428178196485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 313.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6313898533950615
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.89359657037672e-19,-1.6377527740870596e-18,-9.797024911051469e-19)
    sum a = (7.762297921959581e-19,-5.803755159242928e-18,-8.110363076310927e-18)
    sum e = 0.06836285305668863
    sum de = -2.6357971252659318e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003574544344575435 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7324e+04 | 82944 |      1 | 1.447e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8848475849081698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16900929826372213, dt = 0.0003574544344575435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 286.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313898533950615
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2458009010552416e-19,-1.6403918655391148e-18,-9.832018017024657e-19)
    sum a = (-4.877789681823984e-18,-1.2681115181534665e-18,-6.0422510710444355e-18)
    sum e = 0.06836285326886678
    sum de = 7.691059161069047e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035935340904337017 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7983e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8995781320501934 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.29s (niter = 3) global walltime = 796.31s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.16936675269817966, dt = 0.00035935340904337017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 265.39 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.631389853395062
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2458009010552415e-18,-1.6401485450506274e-18,-9.850573156879061e-19)
    sum a = (-3.2462696556343315e-18,-5.061964574648257e-18,-1.9440163191837254e-18)
    sum e = 0.0683628534948315
    sum de = -3.22041926546085e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003497370789169092 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7410e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8954244680891155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16972610610722302, dt = 0.0003497370789169092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.23 us    (2.2%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 306.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 5.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (79.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4436863828391274e-19,-1.642413297289625e-18,-9.849964910139303e-19)
    sum a = (-2.7263873565401246e-18,-2.755436079473384e-18,-9.131535798929246e-18)
    sum e = 0.06836285211752884
    sum de = -7.782538719372512e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003512447371695084 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8222e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.883780813545327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17007584318613994, dt = 0.0003512447371695084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.86 us    (2.2%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 328.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6313898533950613
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.210333091180815e-19,-1.6433865792435744e-18,-9.894752355202631e-19)
    sum a = (2.8030520273742932e-19,-1.6018723605155016e-18,-6.489736961460436e-18)
    sum e = 0.06836285228862596
    sum de = -3.4897757426877174e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003528339697816692 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8151e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8865111090485346 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.86s (niter = 2) global walltime = 800.61s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.17042708792330946, dt = 0.0003528339697816692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 338.60 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.6313898533950622
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.389547158869308e-19,-1.6437983523779376e-18,-9.913022888770138e-19)
    sum a = (-9.702872402449477e-20,-3.155979037444871e-18,-6.010117203958248e-18)
    sum e = 0.06836285247298556
    sum de = -6.737300062460705e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035450803977545286 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8296e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8927436010943216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17077992189309113, dt = 0.00035450803977545286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.39 us    (2.1%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 380.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 5.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.343506757914311e-19,-1.6452769922695147e-18,-9.933743204689059e-19)
    sum a = (-3.581677590533819e-19,9.26863891530282e-19,-3.616085628300267e-18)
    sum e = 0.06836285267107642
    sum de = -6.784733907506946e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003562678970764896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8262e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8964546516341348 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 803.46s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.1711344299328666, dt = 0.0003562678970764896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 307.62 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.082888475532633e-18,-1.644191408551648e-18,-9.942010193543627e-19)
    sum a = (-1.3967344717600112e-18,-3.3792349441123425e-18,-6.820163355800766e-18)
    sum e = 0.06836285288358776
    sum de = -2.4496192834594366e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003581145871291152 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8002e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8968892291476651 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 804.89s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.17149069782994308, dt = 0.0003581145871291152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.42 us    (0.7%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 319.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2697586106909192e-18,-1.6459882367743239e-18,-9.971894965998634e-19)
    sum a = (6.52847587572218e-20,3.2402802282254118e-18,-7.935829472925006e-18)
    sum e = 0.06836285311103064
    sum de = 4.014089137038129e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003497566157595294 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7732e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8973408493105001 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 806.33s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.1718488124170722, dt = 0.0003497566157595294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 309.05 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6313898533950617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4757949135577477e-18,-1.6429373721879056e-18,-1.0002486292443872e-18)
    sum a = (-1.6500872511573031e-18,-5.613590839009736e-18,-1.718114967937013e-18)
    sum e = 0.06836285193180597
    sum de = -9.44865252662172e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035125930802903043 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8372e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8861121940019873 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.43s (niter = 1) global walltime = 807.75s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.17219856903283173, dt = 0.00035125930802903043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 283.72 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.631389853395062
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8394573464069e-19,-1.6472235561774134e-18,-9.997115113779908e-19)
    sum a = (-3.534361114003356e-18,-3.4238561783087925e-18,-1.8113450410326486e-18)
    sum e = 0.06836285211302393
    sum de = 1.776058683802817e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003528436251992754 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7793e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8810893045642164 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 809.19s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.17254982834086077, dt = 0.0003528436251992754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 326.35 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.6479535176428755e-18,-1.0004072355809321e-18)
    sum a = (-1.7057889260602538e-18,-1.388948216128416e-18,-7.696754876313977e-18)
    sum e = 0.06836285230828892
    sum de = -4.158931771018615e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035451255550155054 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7747e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8843588922867238 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 810.63s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.17290267196606005, dt = 0.00035451255550155054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 344.40 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3560063653793591e-18,-1.6488519317542134e-18,-1.004093563148941e-18)
    sum a = (3.931160679844268e-18,-2.2894586270594524e-18,-4.023239319699208e-18)
    sum e = 0.06836285251775737
    sum de = 9.504133184666877e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003562670509321422 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8231e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8959953000213947 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 812.05s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.1732571845215616, dt = 0.0003562670509321422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.29 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 323.40 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3224655718894102e-18,-1.648327856855933e-18,-1.004905685027552e-18)
    sum a = (-4.7394339086779456e-18,-2.689702113660493e-18,-8.854738685317651e-19)
    sum e = 0.06836285274193887
    sum de = 1.4142909120305053e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035810815773893253 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8022e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.897193215140682 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 813.48s (max_walltime = 814.85s)  [SPH][rank=0]
---------------- t = 0.17361345157249375, dt = 0.00035810815773893253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.00 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 338.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.622456114969136
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3061639297235256e-19,-1.649525742337717e-18,-1.0046692733410371e-18)
    sum a = (3.55712093815725e-18,-2.899931015713565e-18,-3.0571399137325705e-18)
    sum e = 0.06836285298102664
    sum de = 1.451539185886013e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003600368934703758 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7043e+04 | 82944 |      1 | 1.454e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8866107404111436 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 814.94s > 814.85s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 26):
   -> walltime = 814.9374685710001 >= 814.850860718
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000026.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (55.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000026.sham                 [Shamrock Dump][rank=0]
              - took 6.29 ms, bandwidth = 2.85 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 814.9374685710001 -> 844.9374685710001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.17397155973023268)
   -> iter = None (current = 557)
   -> walltime = 844.9374685710001 (current = 814.9482832880001)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 844.94s)      [SPH][rank=0]
---------------- t = 0.17397155973023268, dt = 0.0003600368934703758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.35 us    (1.2%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 349.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8332335417084353e-19,-1.6506300430162365e-18,-1.0061939945139365e-18)
    sum a = (-4.730898974620235e-18,3.3600687764038004e-19,-5.6384426349197604e-18)
    sum e = 0.06836285323559567
    sum de = -6.883836762335699e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035027466730492575 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5668e+04 | 82944 |      1 | 1.490e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8699069249153295 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.96s (niter = 4) global walltime = 816.44s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.17433159662370307, dt = 0.00035027466730492575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.30 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.12 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.6224561149691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.918491789170577e-19,-1.650105968117956e-18,-1.008609079933521e-18)
    sum a = (-5.015396776543908e-18,5.402613258530549e-18,-3.571877584226736e-18)
    sum e = 0.06836285188071867
    sum de = -1.1677407969084598e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003518121661570969 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7686e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8769916549877715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17468187129100798, dt = 0.0003518121661570969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.31 us    (1.9%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 364.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.622335551697531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.241009359128106e-18,-1.6468866508856618e-18,-1.0094886488711834e-18)
    sum a = (3.536607149281701e-18,-5.318836142648288e-18,-5.660231942229261e-18)
    sum e = 0.06836285207969944
    sum de = -8.16984453450454e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003534315073387683 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6426e+04 | 82944 |      1 | 1.470e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8616083818577989 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17503368345716508, dt = 0.0003534315073387683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 377.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.622335551697531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31238773442199e-19,-1.6513600044816985e-18,-1.0118707862320574e-18)
    sum a = (-1.9603395909393296e-18,-2.994713704459715e-21,-6.0163542721641336e-18)
    sum e = 0.06836285229249804
    sum de = 1.3091000078933619e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035513598141486763 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8302e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8943463474636566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17538711496450385, dt = 0.00035513598141486763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.83 us    (2.8%)
   patch tree reduce : 2.65 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 285.64 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.622335551697531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.433113791758558e-19,-1.6511915518358227e-18,-1.0140901778103852e-18)
    sum a = (-2.9703067877683684e-18,-2.003538336126161e-18,-2.0135763052935152e-18)
    sum e = 0.06836285251886676
    sum de = -8.13193981011491e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003569265553914084 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8325e+04 | 82944 |      1 | 1.422e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8990121770171305 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.35s (niter = 3) global walltime = 822.20s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.17574225094591872, dt = 0.0003569265553914084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.08 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 336.47 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.622335551697531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.995651213617895e-19,-1.6510979670325583e-18,-1.0140748207115847e-18)
    sum a = (1.0387164483918523e-18,-2.5603304816278335e-18,-2.1089178247162583e-18)
    sum e = 0.06836285275908262
    sum de = 1.6832238727837456e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035880427543829815 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8492e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9061401389973763 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17609917750131013, dt = 0.00035880427543829815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 315.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6223355516975313
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.660243278718407e-19,-1.6522771355536892e-18,-1.0148475380417555e-18)
    sum a = (-1.3610973786769405e-18,-2.255842965726892e-18,-4.612445215751297e-18)
    sum e = 0.0683628530133215
    sum de = -1.752426464574422e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035039183938587783 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7438e+04 | 82944 |      1 | 1.444e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8944811251686384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17645798177674843, dt = 0.00035039183938587783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.62 us    (2.3%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 311.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.622335551697531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271089e-21,-1.652295852514342e-18,-1.0169385551956204e-18)
    sum a = (1.8663055806192944e-18,-1.068438981908615e-18,-3.0946301464980823e-18)
    sum e = 0.06836285185552501
    sum de = 5.3723064679604e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003519283391032105 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8326e+04 | 82944 |      1 | 1.422e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8870276005322996 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 826.48s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.1768083736161343, dt = 0.0003519283391032105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 269.37 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.622335551697531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.018671414095393e-19,-1.653175549665027e-18,-1.0177990971226701e-18)
    sum a = (-4.442358309195542e-18,-9.964909851589703e-19,-8.207840152565877e-18)
    sum e = 0.06836285205892349
    sum de = -1.0271121518405646e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003535469141260655 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8189e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8888207591327308 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17716030195523752, dt = 0.0003535469141260655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.06 us    (2.7%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 279.61 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6223355516975309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.6531193987830686e-18,-1.021567348109043e-18)
    sum a = (-1.2832348223609879e-18,-3.959236120823578e-18,-7.672937451149341e-18)
    sum e = 0.06836285227467005
    sum de = 1.224555531845542e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035525057879660867 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8245e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8937647938156484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17751384886936358, dt = 0.00035525057879660867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.3%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 315.17 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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.6310402199074068
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7968282226758293e-18,-1.6557210563138179e-18,-1.024212788697942e-18)
    sum a = (-7.839561535534642e-18,-1.4800623805866028e-18,-5.41260284043683e-18)
    sum e = 0.06836285250254197
    sum de = -1.224259070314003e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035704031323731926 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8169e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8969044338688378 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.88s (niter = 2) global walltime = 830.76s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.17786909944816018, dt = 0.00035704031323731926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 267.75 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.197885481783886e-19,-1.6552156983761904e-18,-1.0257442335627913e-18)
    sum a = (-4.205176983802332e-18,1.7528807990628826e-18,-2.2466445110291035e-18)
    sum e = 0.06836285274279864
    sum de = -6.5357062210141814e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035891715924367884 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7523e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8914086280509532 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1782261397613975, dt = 0.00035891715924367884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.86 us    (2.3%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 311.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2074685656381572e-18,-1.6547477743598685e-18,-1.0260029322661155e-18)
    sum a = (-4.008723764789775e-18,2.4990885863716324e-18,-2.5300621578850357e-18)
    sum e = 0.06836285299558043
    sum de = -1.6119036986249335e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034942410207057636 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8155e+04 | 82944 |      1 | 1.426e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9059342056340411 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 833.63s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.1785850569206412, dt = 0.00034942410207057636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.36 us    (0.6%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 371.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8332335417084353e-19,-1.6535311719174318e-18,-1.0268896117920883e-18)
    sum a = (-5.670789870764917e-18,-3.673390697732898e-18,-9.218849694393607e-18)
    sum e = 0.0683628516914827
    sum de = 8.330569036246044e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003509105700671019 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7780e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8762832725853772 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 835.07s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.17893448102271178, dt = 0.0003509105700671019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 311.80 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406633e-19,-1.6550285287696617e-18,-1.0312976724649936e-18)
    sum a = (-2.8228171378237275e-18,-8.619534719861175e-19,-2.9630358101887154e-19)
    sum e = 0.06836285188394221
    sum de = 2.405573570202213e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.0003524783603592008 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8015e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8835958962681737 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 836.50s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.1792853915927789, dt = 0.0003524783603592008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.6310402199074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.468581601632985e-19,-1.656750489149726e-18,-1.02985712816786e-18)
    sum a = (4.779563072317705e-19,-2.4146376599058684e-18,-4.121617535483623e-18)
    sum e = 0.06836285208730568
    sum de = -2.941745425814185e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003541307189750912 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8117e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8891104914375668 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 837.93s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.1796378699531381, dt = 0.0003541307189750912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.23 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 314.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5812088359547295e-19,-1.6567879230710318e-18,-1.0319791969238017e-18)
    sum a = (-3.579880762311144e-18,3.578832612514582e-18,-1.278112584682497e-18)
    sum e = 0.06836285230139744
    sum de = -7.604238283975481e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035586860003469534 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7668e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8863687146287665 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 839.37s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.17999200067211318, dt = 0.00035586860003469534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.31 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 342.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1308038948039885e-18,-1.654242416422241e-18,-1.0319639913715604e-18)
    sum a = (-1.324262400112086e-18,8.19802876595847e-19,-4.491933694544631e-18)
    sum e = 0.0683628525264521
    sum de = -2.290842957496618e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035769307107104046 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7791e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8926190708297197 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 840.80s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.18034786927214788, dt = 0.00035769307107104046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 318.80 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.09770585685907e-19,-1.6548039252418272e-18,-1.0340838962142184e-18)
    sum a = (5.15090757167071e-20,-2.1397229418364664e-18,-3.381872116098764e-18)
    sum e = 0.06836285276288359
    sum de = -8.91375122043063e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003494090411531481 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8144e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9026848348604136 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 842.23s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.1807055623432189, dt = 0.0003494090411531481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 305.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (77.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6310402199074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7311788984672605e-19,-1.6563761499366684e-18,-1.0350971290695707e-18)
    sum a = (-1.8357595008338056e-18,-2.907642403502549e-18,-4.31777986613485e-18)
    sum e = 0.06836285162100199
    sum de = -2.8583126805096365e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003508910399774353 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8299e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8841265987323234 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 843.65s (max_walltime = 844.94s)  [SPH][rank=0]
---------------- t = 0.18105497138437207, dt = 0.0003508910399774353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 276.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6310402199074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.456133992236056e-19,-1.6569938096382133e-18,-1.0367755210301573e-18)
    sum a = (1.786047253339774e-18,-3.48240283123098e-18,-6.251551306574583e-18)
    sum e = 0.06836285180392926
    sum de = 3.1721383874673548e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035245444085442 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7987e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8831182686370908 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 845.09s > 844.94s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 27):
   -> walltime = 845.0865291340001 >= 844.9374685710001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000027.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (52.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000027.sham                 [Shamrock Dump][rank=0]
              - took 6.57 ms, bandwidth = 2.73 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 845.0865291340001 -> 875.0865291340001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.1814058624243495)
   -> iter = None (current = 578)
   -> walltime = 875.0865291340001 (current = 845.097693236)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 875.09s)      [SPH][rank=0]
---------------- t = 0.1814058624243495, dt = 0.00035245444085442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.58 us    (0.7%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 324.24 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.366526958391809e-19,-1.6584350156084845e-18,-1.0393239834275777e-18)
    sum a = (1.9836983578341154e-18,-2.949867866735431e-18,-2.5654204090440513e-18)
    sum e = 0.06836285199711885
    sum de = -1.497554250745603e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003541022275002855 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7698e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8826420733970306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.75s (niter = 4) global walltime = 846.54s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.1817583168652039, dt = 0.0003541022275002855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 28.63 us   (8.2%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 299.58 us  (86.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6310402199074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.659239844916558e-18,-1.039572129311656e-18)
    sum a = (1.745918089700014e-18,1.2664644256160135e-18,-3.610006986124373e-18)
    sum e = 0.06836285220058179
    sum de = -6.6428558888418504e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003558353503717495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7462e+04 | 82944 |      1 | 1.443e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8831321296742392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1821124190927042, dt = 0.0003558353503717495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.63 us    (2.4%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 299.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6310402199074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.126949862035032e-19,-1.6577612050249812e-18,-1.0410796471493466e-18)
    sum a = (-7.792245059004179e-19,2.3680698618015197e-18,-6.597042934672287e-18)
    sum e = 0.06836285241487816
    sum de = -7.248907962602302e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035765486707957817 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7983e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8955011780483995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18246825444307596, dt = 0.00035765486707957817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.9%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 323.49 us  (85.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6223355516975309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.535168434999733e-19,-1.6574430166938823e-18,-1.043976239010046e-18)
    sum a = (5.974453840397132e-19,2.0728659583844033e-18,-1.9959139301949846e-18)
    sum e = 0.06836285264025657
    sum de = 1.666960840196463e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035956181126495967 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7932e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8992842309870468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18282590931015555, dt = 0.00035956181126495967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.3%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 322.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6223355516975309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2745501526180548e-18,-1.6563574329760156e-18,-1.0438572761694721e-18)
    sum a = (-2.5904273543576537e-18,-1.3144547127299805e-18,-3.87571257773253e-18)
    sum e = 0.06836285287716677
    sum de = 1.4814606247477713e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034992193673454166 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6534e+04 | 82944 |      1 | 1.467e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8822651784484243 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 852.31s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.1831854711214205, dt = 0.00034992193673454166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.3%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 280.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.6223355516975309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.947735794346539e-19,-1.6567130552284203e-18,-1.0455513404459567e-18)
    sum a = (-2.576052728576247e-18,-3.4538033153533897e-18,-4.992983580605659e-18)
    sum e = 0.06836285154388258
    sum de = -6.993951045478758e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035143818900719773 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7668e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8758402650634914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18353539305815506, dt = 0.00035143818900719773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.91 us    (2.4%)
   patch tree reduce : 2.68 us    (0.8%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 308.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.6218532986111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.378974567788739e-19,-1.6576489032610638e-18,-1.0475241768665437e-18)
    sum a = (-6.902815088779644e-18,-4.317329012034349e-18,-5.9287096809584184e-18)
    sum e = 0.06836285172142982
    sum de = 5.940453817331222e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.10e+00 |
+-------------+----------+
Info: cfl dt = 0.00035303606620344663 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6645e+04 | 82944 |      1 | 1.464e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8640359353846526 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18388683124716226, dt = 0.00035303606620344663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.8%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.72 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.621853298611111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4374625781406634e-20,-1.6600446742246316e-18,-1.0497731831518448e-18)
    sum a = (-1.26227182642977e-18,-9.607415903119824e-18,-4.700546618373106e-18)
    sum e = 0.06836285190972567
    sum de = 5.375694599749417e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003547188467224892 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8122e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8905812858296883 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 856.65s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18423986731336572, dt = 0.0003547188467224892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 308.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.621853298611111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.474805406331449e-19,-1.6642934242928338e-18,-1.0512395405490163e-18)
    sum a = (1.7709239491322526e-18,-5.8022578023906984e-18,-5.989755594379558e-18)
    sum e = 0.06836285210893288
    sum de = 4.25104660403252e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.000356487495145223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7294e+04 | 82944 |      1 | 1.448e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8820884191761695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18459458616008823, dt = 0.000356487495145223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.6%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 271.25 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.621853298611111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.468581601632985e-19,-1.6649110839943787e-18,-1.0536091034168233e-18)
    sum a = (2.5398166927522844e-18,-2.31992983900233e-18,-3.3146263505155318e-18)
    sum e = 0.0683628523196551
    sum de = 1.8805772555380773e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003583430726016573 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7188e+04 | 82944 |      1 | 1.450e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8848399121887569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18495107365523344, dt = 0.0003583430726016573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 324.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6216121720679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2644723151506344e-19,-1.6659592337909396e-18,-1.0543219166373843e-18)
    sum a = (-9.219413308785763e-18,-3.555997920518077e-18,-6.264165037759695e-18)
    sum e = 0.0683628525424009
    sum de = 5.854056456711283e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034999300703641404 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8121e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9039592321920707 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.89s (niter = 2) global walltime = 860.97s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.1853094167278351, dt = 0.00034999300703641404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 302.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (60.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6218291859567902
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.102054643241175e-19,-1.667531458485781e-18,-1.057027273573566e-18)
    sum a = (-5.14035120586249e-18,-2.215564066401909e-18,-2.6107566168240848e-18)
    sum e = 0.06836285138928128
    sum de = -1.1706101210172837e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035150751994087706 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8210e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8842507978553231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18565940973487152, dt = 0.00035150751994087706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.80 us    (2.6%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 281.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.62182918595679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.360303153693346e-19,-1.6685608913216889e-18,-1.0573109670192559e-18)
    sum a = (-6.0015559994224926e-18,5.752395819211444e-18,-6.785573121405129e-18)
    sum e = 0.06836285156253312
    sum de = -2.538928319835562e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003531038685332572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7621e+04 | 82944 |      1 | 1.439e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8790871954667552 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 863.84s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.1860109172548124, dt = 0.0003531038685332572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.23 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 323.43 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.62182918595679
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.247675919371601e-19,-1.664555461741974e-18,-1.0603878103039024e-18)
    sum a = (-4.181967952592769e-18,1.1710079262863602e-18,-4.060327009669294e-18)
    sum e = 0.06836285174723761
    sum de = 8.302299311631432e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003547850609577313 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6554e+04 | 82944 |      1 | 1.467e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8667227833359029 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 865.31s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18636402112334566, dt = 0.0003547850609577313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 269.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.6218291859567897
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4853779974120188e-19,-1.6661276864368154e-18,-1.0614168124714613e-18)
    sum a = (-6.841722929208665e-18,1.4331202432691967e-18,-1.9563004867380143e-18)
    sum e = 0.06836285194366717
    sum de = -2.0894185226395454e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003565520770504627 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8137e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8952364713812735 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 866.74s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.1867188061843034, dt = 0.0003565520770504627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.99 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 306.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.6218291859567897
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.870576369899221e-19,-1.6639378020404293e-18,-1.0617217221949681e-18)
    sum a = (9.64537389932385e-18,-2.427514928835045e-18,-3.5863232440870774e-18)
    sum e = 0.06836285215241944
    sum de = -4.159355287492242e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003584059748813048 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7341e+04 | 82944 |      1 | 1.447e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.887367095886732 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 868.18s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18707535826135385, dt = 0.0003584059748813048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.13 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 310.72 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.6218291859567897
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.654019474019942e-19,-1.6657907811450637e-18,-1.0632829637919246e-18)
    sum a = (5.666597271578673e-18,2.789875287074671e-18,-5.275333984410997e-18)
    sum e = 0.06836285237401825
    sum de = -7.113382691041614e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003603477820344065 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7871e+04 | 82944 |      1 | 1.433e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9002279709740298 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 869.62s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18743376423623515, dt = 0.0003603477820344065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 312.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.6218291859567902
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.15184508082889e-19,-1.6644057260567512e-18,-1.0655056729755418e-18)
    sum a = (-1.6111559729993267e-19,1.3446264533024122e-18,-7.080819196314438e-18)
    sum e = 0.06836285260894644
    sum de = -7.428478947420214e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003505654963211166 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7797e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9039495344373513 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 871.05s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18779411201826957, dt = 0.0003505654963211166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 316.78 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.6307629243827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-20,-1.6643121412534866e-18,-1.0682327234528515e-18)
    sum a = (3.74219424509286e-18,1.8027427822421372e-18,-7.834742105080697e-18)
    sum e = 0.06836285127067351
    sum de = 9.227576927388348e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003521164192713603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7558e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8757812752848569 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 872.50s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18814467751459069, dt = 0.0003521164192713603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.14 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 310.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.630762924382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3416317395979523e-19,-1.6638629341978178e-18,-1.0711347093434675e-18)
    sum a = (6.875862665439506e-19,-7.20004042394727e-19,-5.302638073798545e-18)
    sum e = 0.06836285145048282
    sum de = -1.1456967644561666e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003537494310903372 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5402e+04 | 82944 |      1 | 1.497e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8466983465496305 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 874.00s (max_walltime = 875.09s)  [SPH][rank=0]
---------------- t = 0.18849679393386204, dt = 0.0003537494310903372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 334.96 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6307629243827162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.09770585685907e-19,-1.6645367447813212e-18,-1.0726099592562153e-18)
    sum a = (1.587797206104541e-18,8.592582296521038e-19,-2.8424544032804553e-18)
    sum e = 0.06836285164277528
    sum de = 6.646667537104495e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035546785630892117 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4874e+04 | 82944 |      1 | 1.512e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8425249459105153 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 875.51s > 875.09s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 28):
   -> walltime = 875.507681764 >= 875.0865291340001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000028.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (55.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000028.sham                 [Shamrock Dump][rank=0]
              - took 6.14 ms, bandwidth = 2.92 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 875.507681764 -> 905.507681764

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.18885054336495238)
   -> iter = None (current = 599)
   -> walltime = 905.507681764 (current = 875.5183166300001)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 905.51s)      [SPH][rank=0]
---------------- t = 0.18885054336495238, dt = 0.00035546785630892117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.82 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6306423611111114
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.145621276130425e-19,-1.6640313868436936e-18,-1.073126935737341e-18)
    sum a = (-8.381604716041851e-18,-4.595388179493433e-19,-1.1310144145495006e-18)
    sum e = 0.06836285184773983
    sum de = -5.083891749420311e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003572726791768938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7931e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8937739053404857 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.73s (niter = 4) global walltime = 876.95s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.1892060112212613, dt = 0.0003572726791768938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.6%)
   patch tree reduce : 2.42 us    (0.6%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 361.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.6306423611111116
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5812088359547295e-19,-1.6638067833158591e-18,-1.0733132434531143e-18)
    sum a = (5.307231627043507e-18,3.093389521021663e-18,-3.506406957759763e-18)
    sum e = 0.06836285206598075
    sum de = -6.910094783700582e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.000359164957147115 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7599e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8931682365323474 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1895632839004382, dt = 0.000359164957147115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.87 us    (2.3%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 319.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6305217978395066
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0665868333667484e-19,-1.6620286720538362e-18,-1.0749558925691658e-18)
    sum a = (-7.038775090962115e-18,1.578513593620716e-18,-2.247245975187452e-18)
    sum e = 0.06836285229792212
    sum de = -9.093322205248541e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035053411032431745 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6989e+04 | 82944 |      1 | 1.455e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8883897151321698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1899224488575853, dt = 0.00035053411032431745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 298.51 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6302806712962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.6609618052966225e-18,-1.075585492667754e-18)
    sum a = (2.934819430370521e-18,5.4178862984232934e-18,-2.654974341030765e-18)
    sum e = 0.06836285112887383
    sum de = -1.0795434912756058e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003520823473956515 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7964e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8818774462576829 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19027298296790962, dt = 0.00028257258764591286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 305.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.6302806712962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.78531812243708e-19,-1.6605687491229121e-18,-1.076409781014057e-18)
    sum a = (-2.6712846243780658e-18,2.4779758547551913e-18,-4.656178382657774e-18)
    sum e = 0.0683628430537767
    sum de = -2.2387080795931158e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003533955325127472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7920e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7103592833655481 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.32s (niter = 3) global walltime = 882.71s (max_walltime = 905.51s)  [SPH][rank=0]
Info: iteration since start : 605                                                     [SPH][rank=0]
Info: time since start : 882.7138287990001 (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/dustysod_128/l2_error_0000007.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 604)
   -> walltime = 905.507681764 (current = 885.0120906940001)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 905.51s)      [SPH][rank=0]
---------------- t = 0.19055555555555553, dt = 0.0003533955325127472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 315.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 7.92 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.6300395447530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.922840575552682e-19,-1.6591462601132937e-18,-1.0782986245986986e-18)
    sum a = (-9.487253015728379e-19,-2.704825417868015e-18,-2.7934480290547954e-18)
    sum e = 0.06836285146995834
    sum de = 3.985290016831483e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035508282880516876 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8274e+04 | 82944 |      1 | 1.423e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8938264625478447 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.27s (niter = 3) global walltime = 886.44s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19090895108806827, dt = 0.00035508282880516876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 266.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.630039544753086
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.6606249000048706e-18,-1.0789758698790257e-18)
    sum a = (1.6375094535985723e-18,6.233496575832897e-19,-1.6780835823584208e-18)
    sum e = 0.06836285167891568
    sum de = -5.407458335271453e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003568682845969909 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6850e+04 | 82944 |      1 | 1.459e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8761449593460399 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19126403391687344, dt = 0.0003568682845969909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.65 us   (3.8%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 299.84 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.6300395447530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1308038948039885e-18,-1.660007240303326e-18,-1.0793715784699223e-18)
    sum a = (-2.6233692051067103e-18,-2.5922241825803294e-18,-8.412384227991973e-19)
    sum e = 0.06836285189881816
    sum de = -1.464858778981587e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003587403738275543 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5785e+04 | 82944 |      1 | 1.487e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.864054688740901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19162090220147043, dt = 0.0003587403738275543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.2%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 326.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6300395447530867
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8394573464069e-19,-1.6618789363686132e-18,-1.0795542263101596e-18)
    sum a = (-3.017473528613609e-18,5.860355248257217e-18,-1.4399055274891886e-18)
    sum e = 0.06836285213343725
    sum de = 2.1140248297572828e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003493036317920917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7885e+04 | 82944 |      1 | 1.433e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9012924996257585 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.90s (niter = 2) global walltime = 890.82s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19197964257529798, dt = 0.0003493036317920917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.29 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 338.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.6300395447530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.42066618236163e-19,-1.6576489032610638e-18,-1.080155886632273e-18)
    sum a = (-2.0028645255426574e-18,2.678471937268769e-18,-4.913559953446813e-18)
    sum e = 0.06836285087184925
    sum de = -1.6169858963084593e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035078642631478546 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8022e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8796636964359533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19232894620709007, dt = 0.00035078642631478546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.4%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 287.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.6209852430555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.658959090506765e-18,-1.0825040427323075e-18)
    sum a = (1.1379912076946917e-19,1.3925418725737676e-19,-7.182302326784141e-18)
    sum e = 0.06836285105268057
    sum de = 5.459127345053966e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035235059023675593 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8073e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8841676091212404 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.89s (niter = 2) global walltime = 893.68s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19267973263340485, dt = 0.00035235059023675593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 308.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.6209852430555556
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.864352565200757e-19,-1.6587719209002362e-18,-1.0854006954556333e-18)
    sum a = (3.2869977620149835e-18,2.1819484050693485e-18,-5.3261458549673706e-18)
    sum e = 0.06836285124596192
    sum de = 2.2353199478040986e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003539993761359936 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7755e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.883240730084649 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1930320832236416, dt = 0.0003539993761359936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.85 us    (2.2%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 328.81 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6209852430555556
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.193536695401781e-19,-1.6574617336545351e-18,-1.086973143255478e-18)
    sum a = (-3.5996458727605774e-18,-2.395770963567772e-21,-4.2141946786664886e-18)
    sum e = 0.06836285145171075
    sum de = -8.427977825180288e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035573375590551917 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7411e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8820997857106846 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 896.56s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.1933860825997776, dt = 0.00035573375590551917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 299.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.6209852430555551
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2649670687637836e-18,-1.6573868658119236e-18,-1.0882818770832767e-18)
    sum a = (-8.433113791758558e-19,-2.2870628560958846e-18,-3.3152097819057402e-18)
    sum e = 0.06836285167038969
    sum de = -1.9045535819012943e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035755480739862387 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8092e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8969334309094684 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 897.99s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19374181635568313, dt = 0.00035755480739862387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 271.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6209852430555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-20,-1.6589216565854592e-18,-1.0893043993688278e-18)
    sum a = (-1.2697586106909192e-18,-7.495768402262667e-19,-3.9091604294335624e-18)
    sum e = 0.06836285190225215
    sum de = -6.1723290866420866e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003493407072243933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8062e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9010633838858572 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 899.42s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19409937116308176, dt = 0.0003493407072243933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 362.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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.6209852430555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271089e-21,-1.6585473173724017e-18,-1.0907879396952416e-18)
    sum a = (-2.031613777105471e-18,-1.9056860658329398e-18,-4.4001632106495956e-18)
    sum e = 0.06836285081286268
    sum de = 1.9973036896256402e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035082232887931954 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7375e+04 | 82944 |      1 | 1.446e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.86993989400295 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 900.87s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19444871187030616, dt = 0.00035082232887931954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 299.49 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6209852430555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0733053916783619e-18,-1.6606061830442178e-18,-1.0924200206245023e-18)
    sum a = (1.3236634573711941e-18,-1.734088970567398e-18,-2.000054155981039e-18)
    sum e = 0.06836285099735241
    sum de = 2.6215669717520595e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003523855974315598 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6445e+04 | 82944 |      1 | 1.469e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8594687372479771 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 902.34s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19479953419918547, dt = 0.0003523855974315598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 308.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6209852430555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.25824851045217e-19,-1.6608307865720523e-18,-1.0927187765197706e-18)
    sum a = (-3.74219424509286e-18,3.1803859541362175e-19,-4.9899776085186195e-18)
    sum e = 0.06836285119394404
    sum de = 1.351017550870609e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035403351276806327 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8216e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8903778116400214 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 903.76s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19515191979661703, dt = 0.00035403351276806327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.06 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 312.47 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.6209852430555558
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.724955093768796e-19,-1.6594457314837397e-18,-1.0949879735399424e-18)
    sum a = (-9.499231870546218e-19,-5.716309519072705e-18,1.1596610933745237e-18)
    sum e = 0.06836285140251168
    sum de = -8.419507495707745e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003557670576842103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7843e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8888185226669594 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 905.20s (max_walltime = 905.51s)  [SPH][rank=0]
---------------- t = 0.19550595330938508, dt = 0.0003557670576842103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   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.16 us    (0.3%)
   LB compute        : 312.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 5.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.6207441165123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.6625901808734224e-18,-1.093502260895308e-18)
    sum a = (5.008359199338428e-18,3.1483425174984984e-18,-3.5133241882728896e-18)
    sum e = 0.068362851623388
    sum de = 1.514494909690689e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035758732010391926 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7818e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8927767639034863 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 906.63s > 905.51s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 29):
   -> walltime = 906.6328556210001 >= 905.507681764
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000029.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (51.7%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000029.sham                 [Shamrock Dump][rank=0]
              - took 6.17 ms, bandwidth = 2.90 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 906.6328556210001 -> 936.6328556210001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.19586172036706928)
   -> iter = None (current = 619)
   -> walltime = 936.6328556210001 (current = 906.6435593220001)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 936.63s)      [SPH][rank=0]
---------------- t = 0.19586172036706928, dt = 0.00035758732010391926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 296.91 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.6205029899691359
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4978256068089474e-19,-1.6607184848081351e-18,-1.095584855014078e-18)
    sum a = (4.015312134939586e-18,-6.796502752271324e-19,-2.3158382318450437e-18)
    sum e = 0.06836285185698654
    sum de = -1.5894573255226946e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.000359495358025781 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7921e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8989485859215673 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.73s (niter = 4) global walltime = 908.08s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.1962193076871732, dt = 0.000359495358025781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.34 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 309.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.6205029899691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7728705130401514e-19,-1.6625527469521166e-18,-1.0962033576654733e-18)
    sum a = (-3.533762171262464e-19,-1.2847321792132178e-19,-3.3022917217682917e-18)
    sum e = 0.0683628521034282
    sum de = -5.2300049328216774e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034989152516369906 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7996e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9049209184682829 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19657880304519898, dt = 0.00034989152516369906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 316.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6205029899691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9166167708542177e-20,-1.6612425597064155e-18,-1.0975420732808596e-18)
    sum a = (1.1966875963021021e-18,-1.0676154356398885e-19,-3.59319469619059e-18)
    sum e = 0.06836285083216152
    sum de = 4.946672411965114e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035140845684075787 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7926e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8796829564029328 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1969286945703627, dt = 0.00035140845684075787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.1%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 321.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.6205029899691357
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.060363028668284e-18,-1.6622158416603649e-18,-1.0988636683624537e-18)
    sum a = (-2.4221244441670178e-18,-6.237988646389587e-19,-6.943017894803666e-18)
    sum e = 0.06836285102175545
    sum de = -6.040615463344043e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035300728250757334 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7783e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8813081438505025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19728010302720345, dt = 0.00035300728250757334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 326.75 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6202859760802468
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.241452114673136e-19,-1.6622907095029764e-18,-1.1019284827404466e-18)
    sum a = (3.490638293918244e-18,2.0546730726298107e-18,-4.790422515062375e-18)
    sum e = 0.06836285122298244
    sum de = 5.389670643379113e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003546913051853871 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7952e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8879108644611088 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.30s (niter = 3) global walltime = 913.81s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.197633110309711, dt = 0.0003546913051853871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 320.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6202859760802468
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.558188635477232e-19,-1.6599323724607144e-18,-1.1032323188581564e-18)
    sum a = (-8.720606307386691e-19,3.9694930152613523e-19,1.5273822635715255e-18)
    sum e = 0.06836285143558801
    sum de = -2.23955511254037e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035646152302459594 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7662e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8876770078343444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1979878016148964, dt = 0.00035646152302459594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 334.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.628990644290123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.654019474019942e-19,-1.6609056544146638e-18,-1.101567786608048e-18)
    sum a = (-5.728288373890543e-18,2.967611545434355e-18,-4.898605464302249e-18)
    sum e = 0.0683628516600142
    sum de = 4.153849573335089e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003583190251249963 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7552e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8904147546583132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.198344263137921, dt = 0.0003583190251249963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.0%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 342.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 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.6289906442901234
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3080909461080037e-18,-1.6595954671689628e-18,-1.1044373862996659e-18)
    sum a = (-2.18853677521916e-18,-4.90114844871877e-18,2.27647460853121e-18)
    sum e = 0.06836285189645525
    sum de = -3.2111019030410526e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034984229627941344 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5967e+04 | 82944 |      1 | 1.482e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8703977410527641 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.32s (niter = 3) global walltime = 918.17s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.198702582163046, dt = 0.00034984229627941344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.31 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 324.26 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6289906442901232
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6866227583517116e-18,-1.6624404451881994e-18,-1.1023976790910727e-18)
    sum a = (-2.2124944848548378e-18,-4.830173733923075e-18,9.07642797660267e-20)
    sum e = 0.06836285077586361
    sum de = 2.5629099401546993e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003513564277534111 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7550e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8738408198890064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19905242445932542, dt = 0.0003513564277534111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 1.94 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 347.23 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6289906442901234
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271088e-20,-1.6646864804665442e-18,-1.1027149281393e-18)
    sum a = (3.2342908008164924e-20,-2.1363538889189492e-18,-3.843589557522181e-18)
    sum e = 0.06836285096189372
    sum de = 1.2021938620380285e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000352952579194954 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7523e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8772217516731823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19940378088707883, dt = 0.000352952579194954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.38 us    (1.9%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 355.81 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6288700810185184
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947735794346539e-19,-1.6635260289060661e-18,-1.1047622535996164e-18)
    sum a = (-1.9645321901255733e-19,1.6050916777477958e-18,-1.3341442566769186e-18)
    sum e = 0.0683628511588792
    sum de = -4.614847254878242e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035463381212353187 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7545e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8815400064198265 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.88s (niter = 2) global walltime = 922.50s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.1997567334662738, dt = 0.00035463381212353187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 271.96 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.6288700810185186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947735794346539e-19,-1.6634885949847603e-18,-1.1048044911764384e-18)
    sum a = (-6.506913937050069e-18,1.0870810747188766e-18,-1.4242180619909336e-18)
    sum e = 0.06836285136672106
    sum de = 4.265022647662216e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003564011205859493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7809e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8898089749639322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20011136727839732, dt = 0.0003564011205859493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 315.66 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.628978587962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.62477546884398e-19,-1.6628522183225626e-18,-1.1053283997354871e-18)
    sum a = (-6.711752354435113e-18,-1.2285812972545981e-18,-3.9597371207600147e-19)
    sum e = 0.0683628515859423
    sum de = -1.0252698551802865e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035825558799140316 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7549e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8902185479798473 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 925.38s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20046776839898325, dt = 0.00035825558799140316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 275.44 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.628978587962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.779094317738616e-19,-1.6634511610634546e-18,-1.105269237886636e-18)
    sum a = (-3.0342439253585833e-18,2.1082784479396395e-19,-1.4591874184947157e-18)
    sum e = 0.06836285181675435
    sum de = 2.3032215499273515e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003601982752065079 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7642e+04 | 82944 |      1 | 1.439e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8962978516002296 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 926.82s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20082602398697466, dt = 0.0003601982752065079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 324.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.628978587962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1499700625125306e-18,-1.6630393879290914e-18,-1.1060115287542437e-18)
    sum a = (6.672222133536246e-19,-5.499866586082878e-18,-2.933515470344359e-18)
    sum e = 0.0683628520594221
    sum de = -2.0312379470750156e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.000350441614027821 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8025e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9071325037563144 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 928.25s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20118622226218116, dt = 0.000350441614027821 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.61 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 350.09 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.6289785879629632
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.587432640653194e-19,-1.666034101633551e-18,-1.1072625403166416e-18)
    sum a = (-4.2225463232881986e-18,-4.178224560462195e-18,-1.3668983002158531e-18)
    sum e = 0.06836285076618541
    sum de = 6.685207536204565e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035199298652585805 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7851e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8799221965199773 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 929.68s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20153666387620897, dt = 0.00035199298652585805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 265.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6289785879629632
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.851904955803828e-19,-1.6678309298562268e-18,-1.1074745601600923e-18)
    sum a = (2.5203510536732965e-18,4.8820571488528395e-18,-1.9770558752628107e-18)
    sum e = 0.06836285095108133
    sum de = 3.985501775068297e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003536266897208095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6375e+04 | 82944 |      1 | 1.471e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.861268028352041 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 931.16s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20188865686273483, dt = 0.0003536266897208095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 315.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.628978587962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0685138497512265e-18,-1.6628896522438684e-18,-1.1083072989373692e-18)
    sum a = (5.1173667781807615e-18,1.0080955007637517e-18,-3.242089506239219e-19)
    sum e = 0.06836285114693695
    sum de = -1.0109549983716888e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003553460718472635 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6827e+04 | 82944 |      1 | 1.460e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8721948734607659 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 932.62s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20224228355245563, dt = 0.0003553460718472635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 298.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.6202739197530864
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.953959599045004e-19,-1.6640126698830408e-18,-1.1080857097670012e-18)
    sum a = (-1.1212208109497173e-18,-8.520709167614005e-19,-4.561745113682108e-18)
    sum e = 0.06836285135367101
    sum de = 5.293955920339377e-21
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035715213148967165 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7711e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8900819771530414 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 934.06s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.2025976296243029, dt = 0.00035715213148967165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 303.41 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6202739197530869
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.89359657037672e-19,-1.6648362161517672e-18,-1.1104737442370336e-18)
    sum a = (-6.4643890024467415e-18,-4.173058679322001e-18,-1.7040054261395764e-18)
    sum e = 0.06836285157178675
    sum de = -2.228120167752437e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035904595780773314 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6891e+04 | 82944 |      1 | 1.458e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8818974848866626 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 935.52s (max_walltime = 936.63s)  [SPH][rank=0]
---------------- t = 0.20295478175579257, dt = 0.00035904595780773314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.07 us    (0.5%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 359.80 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.6201533564814816
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1082784479396395e-19,-1.6670073835875005e-18,-1.1105731062262226e-18)
    sum a = (-9.738808966902995e-19,-1.3776806058153862e-18,-1.0044666378711497e-18)
    sum e = 0.06836285180163401
    sum de = 3.116234212948571e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003504860347614969 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7844e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9014235473503631 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 936.95s > 936.63s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 30):
   -> walltime = 936.950179842 >= 936.6328556210001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000030.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (53.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000030.sham                 [Shamrock Dump][rank=0]
              - took 6.18 ms, bandwidth = 2.90 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 936.950179842 -> 966.950179842

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.2033138277136003)
   -> iter = None (current = 640)
   -> walltime = 966.950179842 (current = 936.96089625)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 966.95s)      [SPH][rank=0]
---------------- t = 0.2033138277136003, dt = 0.0003504860347614969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 311.41 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.6201533564814818
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-20,-1.6661089694761626e-18,-1.1107901592564453e-18)
    sum a = (1.47339914259418e-19,-1.241458566183775e-18,-6.895446708095057e-18)
    sum e = 0.06836285066763007
    sum de = -9.932731855977553e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035203770956356565 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6829e+04 | 82944 |      1 | 1.460e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8644891050535849 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.84s (niter = 4) global walltime = 938.42s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.2036643137483618, dt = 0.00035203770956356565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 295.76 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.6201533564814816
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.935288184949611e-19,-1.6677186280923097e-18,-1.1142523702880846e-18)
    sum a = (-9.840629232854625e-19,-7.685184044069744e-19,-2.9169152650423284e-18)
    sum e = 0.06836285084784867
    sum de = 1.099279358946631e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000353671973788158 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7964e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8856527789735854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20401635145792538, dt = 0.000353671973788158 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.3%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 313.26 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.6201533564814818
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.091482052160606e-19,-1.6679057976988383e-18,-1.1145854961269828e-18)
    sum a = (6.109215957097819e-20,-6.989287446995918e-19,-2.592387222248875e-18)
    sum e = 0.06836285103915286
    sum de = 2.1222410493456495e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003553919286925876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8017e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.89057885735669 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.20437002343171354, dt = 0.0003553919286925876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.25 us    (2.4%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 317.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6201533564814814
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9645321901255733e-19,-1.6682801369118959e-18,-1.1154620631005145e-18)
    sum a = (4.612458047608853e-18,1.4869502221068601e-18,6.933844125953697e-20)
    sum e = 0.06836285124164518
    sum de = 3.747273758653025e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003571985913583721 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6897e+04 | 82944 |      1 | 1.458e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8776321626509467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20472541536040612, dt = 0.0003571985913583721 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.57 us    (2.2%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 326.90 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.6199122299382718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.139397471431961e-19,-1.6670073835875005e-18,-1.114957311649385e-18)
    sum a = (1.3422306823388444e-18,-5.7142132194795826e-18,-3.4474200707564068e-18)
    sum e = 0.0683628514558967
    sum de = -5.5040200912584436e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003590930385611083 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7850e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8968738609106328 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 944.18s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.2050826139517645, dt = 0.0003590930385611083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 276.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.619912229938272
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1514023252838593e-18,-1.671199982773744e-18,-1.116818187809933e-18)
    sum a = (-2.3598343991142556e-18,-3.03181072047371e-18,-6.486917835812971e-19)
    sum e = 0.06836285168230805
    sum de = 1.474684361169737e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003495806528574911 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7849e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9016091796501767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2054417069903256, dt = 0.0003495806528574911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.00 us    (2.6%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 281.69 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.619912229938272
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.193536695401781e-19,-1.6696651920002084e-18,-1.116555434079561e-18)
    sum a = (3.575987634495346e-18,-3.1424653918534965e-18,-3.686779050792247e-18)
    sum e = 0.06836285043041007
    sum de = -4.755242965885642e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003510843100707619 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7965e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8794939845825905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20579128764318308, dt = 0.0003510843100707619 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 276.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6199122299382718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.270696119849099e-19,-1.6716866237507187e-18,-1.1183893655521243e-18)
    sum a = (-5.531236212137094e-19,5.998598719639338e-19,-4.4930528432515634e-18)
    sum e = 0.06836285060227743
    sum de = 4.2571875929001135e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035266986448630547 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7966e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8832845515746892 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.32s (niter = 3) global walltime = 948.48s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.20614237195325383, dt = 0.00035266986448630547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.97 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 310.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6199122299382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2458009010552416e-19,-1.6719860951211647e-18,-1.1200950056775048e-18)
    sum a = (-8.186798589566747e-18,-1.2275144304973844e-18,-8.117200096878988e-18)
    sum e = 0.06836285078549377
    sum de = 1.5197465139636657e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035434061443558127 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8032e+04 | 82944 |      1 | 1.429e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8882861745964193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20649504181774014, dt = 0.00035434061443558127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.81 us    (2.6%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 280.28 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.619671103395062
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4916018021104833e-19,-1.6721358308063877e-18,-1.1235986674989243e-18)
    sum a = (5.4443895147077625e-19,1.9084655344898914e-18,-4.780123413266578e-22)
    sum e = 0.06836285098020631
    sum de = -1.2334493777917122e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035609756227177074 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8108e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8936635963328516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20684938243217574, dt = 0.00035609756227177074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.5%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 277.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619671103395062
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.318611539120454e-19,-1.6709379453246038e-18,-1.1221625901050522e-18)
    sum a = (-7.093877823124174e-18,-6.490948369613168e-19,-2.7347794195322714e-18)
    sum e = 0.06836285118701421
    sum de = 9.402065714522734e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003579418106690433 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7257e+04 | 82944 |      1 | 1.449e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.884945636596738 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.88s (niter = 2) global walltime = 952.79s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.20720547999444752, dt = 0.0003579418106690433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.08 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 331.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195505401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4374625781406634e-20,-1.6713122845376614e-18,-1.1236108093441251e-18)
    sum a = (-9.772649231763389e-18,-3.1493251579327743e-18,-8.209956388389226e-19)
    sum e = 0.06836285140632871
    sum de = -9.046311876675928e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034950976486624815 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7870e+04 | 82944 |      1 | 1.433e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8990560045582767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20756342180511655, dt = 0.00034950976486624815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.42 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 366.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.6194299768518516
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.810213341230937e-19,-1.6718363594359417e-18,-1.1235573793992883e-18)
    sum a = (-2.6955418053841897e-18,-3.8705738782109177e-19,1.6246549011859926e-18)
    sum e = 0.06836285030363176
    sum de = 5.377812182117553e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035101069427165684 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7683e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8750305470759726 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 955.66s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.2079129315699828, dt = 0.00035101069427165684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 319.50 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.6283637152777777
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.599880250050123e-19,-1.6724727360981394e-18,-1.1225642630449864e-18)
    sum a = (-3.1264811074559427e-18,-2.8773209272448943e-18,-4.398977356735828e-18)
    sum e = 0.06836285047642902
    sum de = -5.360871523172467e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003525936723381885 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7768e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.880085620067381 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 957.10s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.20826394226425446, dt = 0.0003525936723381885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.99 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 338.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.6283637152777775
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.25824851045217e-19,-1.6736331876586176e-18,-1.1251801516888254e-18)
    sum a = (3.410230230953501e-18,-4.023089032090855e-18,-1.239165650272851e-18)
    sum e = 0.0683628506610115
    sum de = -4.0454293560865384e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003542617685953962 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7916e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8863200092901589 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 958.53s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.20861653593659266, dt = 0.0003542617685953962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 276.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6283637152777775
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.953959599045004e-19,-1.675916656858268e-18,-1.1250355220449718e-18)
    sum a = (5.722897889222516e-18,-2.5793375551708263e-18,-1.4513754318263388e-18)
    sum e = 0.06836285085752665
    sum de = 1.4856957894840428e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003560159814969698 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7768e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8882433745830167 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.44s (niter = 1) global walltime = 959.97s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.20897079770518806, dt = 0.0003560159814969698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.34 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.45 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6283637152777777
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.210333091180815e-19,-1.6761786943074084e-18,-1.1255920675484694e-18)
    sum a = (-4.348324298875506e-18,-8.300223371123158e-19,-4.211803742014551e-18)
    sum e = 0.06836285106648436
    sum de = 4.489274620447792e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003578574167996697 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6808e+04 | 82944 |      1 | 1.460e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8778076757399101 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 961.43s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.20932681368668504, dt = 0.0003578574167996697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.58 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6283637152777777
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.15184508082889e-19,-1.6752054123534589e-18,-1.1275654997514385e-18)
    sum a = (-2.8455769619776214e-18,-1.8217217803441506e-19,-1.6203005549290971e-18)
    sum e = 0.06836285128827652
    sum de = 9.009042426996738e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035978715427674256 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7314e+04 | 82944 |      1 | 1.447e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8901966616321546 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 962.87s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.2096846711034847, dt = 0.00035978715427674256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 266.26 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6283637152777777
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.337282953215847e-19,-1.675766921173045e-18,-1.1277115612283042e-18)
    sum a = (-4.749615935273108e-18,-1.5436251789637602e-18,-1.8792901580030734e-18)
    sum e = 0.06836285152330872
    sum de = -1.5077186461126546e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003501165362215672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7926e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9045631163516681 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 964.31s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.21004445825776144, dt = 0.0003501165362215672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 307.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.6283637152777777
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.024895218793857e-19,-1.6777883529235555e-18,-1.128413685119185e-18)
    sum a = (-1.736933948586635e-20,2.354593650131451e-18,2.4967905596957137e-18)
    sum e = 0.06836285026852668
    sum de = 1.9845981954168257e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003516546790607278 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7548e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8745016606959668 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 965.75s (max_walltime = 966.95s)  [SPH][rank=0]
---------------- t = 0.21039457479398302, dt = 0.0003516546790607278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 334.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.628363715277778
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.675766921173045e-18,-1.1267719950127642e-18)
    sum a = (-4.880185452787552e-18,-1.7741619833251998e-18,-8.784343744435246e-19)
    sum e = 0.06836285045021415
    sum de = -9.086969458144134e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035327519842246515 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7605e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8792113109428211 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 967.19s > 966.95s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 31):
   -> walltime = 967.191305377 >= 966.950179842
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000031.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (15.5%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000031.sham                 [Shamrock Dump][rank=0]
              - took 6.17 ms, bandwidth = 2.91 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 967.191305377 -> 997.191305377

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.21074622947304375)
   -> iter = None (current = 661)
   -> walltime = 997.191305377 (current = 967.2019509410001)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 997.19s)      [SPH][rank=0]
---------------- t = 0.21074622947304375, dt = 0.00035327519842246515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 297.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6284842785493823
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.756074117261118e-19,-1.6773017119465808e-18,-1.127669950637732e-18)
    sum a = (-4.610661219386178e-18,-2.4605129304660607e-18,-2.0414115357635302e-18)
    sum e = 0.06836285064397211
    sum de = -7.963803770084932e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035498143644046714 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7824e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8866295156340248 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.74s (niter = 4) global walltime = 968.64s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.2110995046714662, dt = 0.00035498143644046714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 279.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.6284842785493823
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3478555442964167e-19,-1.6776386172383325e-18,-1.1285910979167176e-18)
    sum a = (-1.208067508379049e-18,-4.5019905458355954e-18,2.169275466614234e-18)
    sum e = 0.068362850850041
    sum de = 1.0360907010814602e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035677441072907897 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7810e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8906929715440165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21145448610790668, dt = 0.00035677441072907897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.1%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 337.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.6284842785493827
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.193536695401781e-19,-1.6801092560445118e-18,-1.1270971271292798e-18)
    sum a = (-7.642509373781193e-19,-3.55210479270228e-18,-2.2951710891108482e-18)
    sum e = 0.06836285106877786
    sum de = -1.740991519786489e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003586552264669249 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6416e+04 | 82944 |      1 | 1.470e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8735994569282639 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21181126051863575, dt = 0.0003586552264669249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.1%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 322.11 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.6195505401234562
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8687013515828622e-18,-1.681382009368907e-18,-1.1287078686709505e-18)
    sum a = (-2.238249022713191e-18,-2.3300369977548814e-18,1.2783787712401263e-18)
    sum e = 0.06836285130056984
    sum de = 4.162319902807632e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003501599461267507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7853e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9005714690329236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21216991574510266, dt = 0.0003501599461267507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.12 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 360.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.619550540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4916018021104833e-19,-1.6820183860311047e-18,-1.1276038425904626e-18)
    sum a = (-7.41610901772404e-18,-2.6437332582970368e-18,-1.7885296725494906e-18)
    sum e = 0.06836285020632377
    sum de = 1.1180834903756764e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035169918369522447 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7405e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8724333966823553 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 974.43s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.2125200756912294, dt = 0.00035169918369522447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.18 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 349.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.619550540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.791541927135544e-19,-1.6818686503458819e-18,-1.1288143544559456e-18)
    sum a = (1.4170985249503372e-18,-8.164338236783299e-19,-3.0866173723413404e-18)
    sum e = 0.06836285039137067
    sum de = -1.0122043719688889e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003533210877717937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6642e+04 | 82944 |      1 | 1.464e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8646261174574718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21287177487492465, dt = 0.0003533210877717937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.2%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 319.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195505401234565
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2026770237110216e-18,-1.6817189146606589e-18,-1.1300987108830735e-18)
    sum a = (-3.487044637472892e-18,4.053719338199282e-19,-2.2307462791018447e-18)
    sum e = 0.06836285058841803
    sum de = 5.353248226647178e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035502875733791343 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7171e+04 | 82944 |      1 | 1.451e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8767301221108867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21322509596269645, dt = 0.00035502875733791343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 317.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6195505401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3703809911607657e-18,-1.6824675930867737e-18,-1.1307277224513729e-18)
    sum a = (-7.88807589754689e-18,-2.025998688909609e-18,-6.656235253827798e-19)
    sum e = 0.06836285079735706
    sum de = -1.93225155927651e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003568232275074367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7867e+04 | 82944 |      1 | 1.433e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8916865263285723 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.34s (niter = 3) global walltime = 978.78s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21358012472003438, dt = 0.0003568232275074367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 270.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619550540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7297466356959315e-18,-1.683478308962029e-18,-1.1307317640636824e-18)
    sum a = (2.641337487333469e-19,-2.223350322033504e-18,-4.7915864940964535e-18)
    sum e = 0.06836285101864129
    sum de = -1.860761978528247e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003587055916704046 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6524e+04 | 82944 |      1 | 1.467e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8753884370393954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2139369479475418, dt = 0.0003587055916704046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 2.21 us    (0.3%)
   gen split merge   : 1.12 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.2%)
   LB compute        : 732.50 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195505401234571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1705684929924016e-18,-1.6831039697489714e-18,-1.1332060491340713e-18)
    sum a = (-9.01648402138731e-18,1.756362153744317e-18,-2.3979236819915808e-18)
    sum e = 0.06836285125253128
    sum de = 1.9727397341552655e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003492729149492403 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7705e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8983964853761378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2142956535392122, dt = 0.0003492729149492403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.19 us    (2.4%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 311.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.619550540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.7143825026882265e-19,-1.682430159165468e-18,-1.1335571174580516e-18)
    sum a = (6.193067940822692e-19,-4.640308885060329e-19,-7.325221511705558e-19)
    sum e = 0.06836285004533724
    sum de = -1.748276003132876e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035076384714700264 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7839e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8768040568326733 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.89s (niter = 2) global walltime = 983.12s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21464492645416144, dt = 0.00035076384714700264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 268.01 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.619550540123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.085258247462141e-19,-1.6829916679850543e-18,-1.1335492035554155e-18)
    sum a = (-1.0982214096994668e-17,-2.652343060197358e-18,-4.7972645253721205e-18)
    sum e = 0.06836285022505813
    sum de = -5.936006894358137e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003523367257791226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7827e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8803668060876962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21499569030130844, dt = 0.0003523367257791226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.4%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 282.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (76.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6195505401234565
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.684938231892953e-18,-1.1359351330493037e-18)
    sum a = (-8.091716429450151e-18,-3.0036604116517888e-18,-3.48033547189361e-18)
    sum e = 0.06836285041611836
    sum de = -7.985826626713544e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035399484828774707 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7816e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8841433198058068 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 985.99s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21534802702708755, dt = 0.00035399484828774707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 329.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.6195505401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4978256068089474e-19,-1.685087967578176e-18,-1.1369163334303415e-18)
    sum a = (-1.1829119132615874e-18,-3.9914667270678254e-18,-9.86320216484482e-19)
    sum e = 0.06836285061839101
    sum de = 8.731215620297328e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003557392203503024 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6474e+04 | 82944 |      1 | 1.469e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8676792946654168 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 987.46s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.2157020218753753, dt = 0.0003557392203503024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.00 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 327.17 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.619309413580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1686414766079237e-19,-1.6876334742269667e-18,-1.1368311285843145e-18)
    sum a = (-3.036639696322151e-18,2.1989434053421574e-18,-4.395443601923328e-19)
    sum e = 0.06836285083238261
    sum de = -5.902125576467965e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003575709597019257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7805e+04 | 82944 |      1 | 1.435e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8925181128237938 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 988.90s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.2160577610957256, dt = 0.0003575709597019257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 265.55 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.6193094135802466
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.42066618236163e-19,-1.6849007979716472e-18,-1.1369124644802993e-18)
    sum a = (-1.4656128869625847e-18,-2.4241084419962222e-18,-1.7156080279081307e-18)
    sum e = 0.06836285105830886
    sum de = -1.5353319201931448e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.000349198521245804 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7676e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8951012511971845 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 990.33s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21641533205542754, dt = 0.000349198521245804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 288.76 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (57.0%)
Warning: High interface/patch volume ratio.                                  [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 = (-1.6914143002788472e-18,-1.6879329455974127e-18,-1.137772886779502e-18)
    sum a = (-5.522252071023715e-19,-2.832325353835387e-18,-1.130244412528892e-18)
    sum e = 0.06836284998985288
    sum de = 1.7511559151535405e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035068628590942787 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7444e+04 | 82944 |      1 | 1.444e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8706389411652685 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 991.78s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21676453057667333, dt = 0.00035068628590942787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 299.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.6194058641975306
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7537043453316094e-18,-1.6877832099121897e-18,-1.1380182582392265e-18)
    sum a = (5.417437091367625e-18,-2.119134285118306e-18,-1.8967002236540884e-18)
    sum e = 0.06836285016775366
    sum de = 1.2536087619363645e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003522560942444878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6732e+04 | 82944 |      1 | 1.462e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8635040181448626 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 993.24s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21711521686258275, dt = 0.0003522560942444878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 304.33 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.619405864197531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.77474553135651e-19,-1.6895051702922541e-18,-1.138825717616578e-18)
    sum a = (-4.513632495361683e-18,3.4255781386888567e-19,5.889203625958003e-20)
    sum e = 0.06836285035661525
    sum de = 1.871604000253102e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000353911012319233 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6420e+04 | 82944 |      1 | 1.470e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8626064697406259 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 994.71s (max_walltime = 997.19s)  [SPH][rank=0]
---------------- t = 0.21746747295682725, dt = 0.00031030482095051326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 308.73 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.619405864197531
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.859118267728591e-18,-1.6876709081482725e-18,-1.1384943673611378e-18)
    sum a = (1.944767079676139e-18,2.9560070298295733e-18,-7.97446759145026e-19)
    sum e = 0.06836284537509317
    sum de = 3.737109363285973e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003554401642976865 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6117e+04 | 82944 |      1 | 1.478e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7557917010772348 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 996.19s (max_walltime = 997.19s)  [SPH][rank=0]
Info: iteration since start : 682                                                     [SPH][rank=0]
Info: time since start : 996.192991912 (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/dustysod_128/l2_error_0000008.npy
Saving data to _to_trash/dustysod_128/dust_mass_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 = 681)
   -> walltime = 997.191305377 (current = 998.494090761)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 997.19s)      [SPH][rank=0]
---------------- t = 0.21777777777777776, dt = 0.0003554401642976865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.2%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 308.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6194058641975309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8543267258014555e-18,-1.6868099279582403e-18,-1.138933382457872e-18)
    sum a = (-4.350121127098182e-18,-3.1081384860161267e-19,8.796427850524448e-19)
    sum e = 0.06836285073933751
    sum de = -1.924204746277594e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003572502124661452 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7303e+04 | 82944 |      1 | 1.447e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8840187777712704 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 999.94s > 997.19s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 32):
   -> walltime = 999.942819555 >= 997.191305377
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000032.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (51.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000032.sham                 [Shamrock Dump][rank=0]
              - took 6.27 ms, bandwidth = 2.86 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 999.942819555 -> 1029.942819555

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.21813321794207546)
   -> iter = None (current = 682)
   -> walltime = 1029.942819555 (current = 999.9535530510001)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1029.94s)     [SPH][rank=0]
---------------- t = 0.21813321794207546, dt = 0.0003572502124661452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.07 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 316.10 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.6281105324074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.232858538045164e-18,-1.6866227583517116e-18,-1.1382674694194771e-18)
    sum a = (5.612093482157506e-19,-2.9057332735159557e-18,-6.599923856815816e-19)
    sum e = 0.0683628509617982
    sum de = -9.792547903206966e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003591561606512542 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7769e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8957514208571592 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.75s (niter = 4) global walltime = 1001.39s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2184904681545416, dt = 0.0003591561606512542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 284.32 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.6281105324074077
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5285018747562386e-18,-1.6879329455974127e-18,-1.1388198887929244e-18)
    sum a = (-3.958412574554852e-18,-5.422378368979983e-18,3.5774903576132394e-19)
    sum e = 0.06836285119418056
    sum de = -1.6104637426146012e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00034962249675754987 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7600e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8978906946896816 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21884962431519284, dt = 0.00034962249675754987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.62 us    (2.5%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 280.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.6281105324074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-1.6914891681214587e-18,-1.138487737031719e-18)
    sum a = (4.992786688075237e-18,-2.9637932854611687e-18,-4.5830483751228915e-18)
    sum e = 0.06836284997657487
    sum de = -1.4230153513872246e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035113649499492216 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7734e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8760907003265692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21919924681195038, dt = 0.00035113649499492216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 317.09 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.6278694058641974
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1686414766079237e-19,-1.6911896967510127e-18,-1.1409773312275802e-18)
    sum a = (5.572563261258638e-18,-1.404895066604664e-18,-6.199348693301732e-18)
    sum e = 0.06836285015452438
    sum de = 3.3118988237643143e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035273272690438946 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6448e+04 | 82944 |      1 | 1.469e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8602843571775278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21955038330694532, dt = 0.00035273272690438946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.2%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 311.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.6277488425925928
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7728705130401513e-18,-1.692312714390185e-18,-1.1434538513553582e-18)
    sum a = (4.350121127098182e-18,1.7669559534738434e-18,9.921328179970628e-19)
    sum e = 0.06836285034337346
    sum de = 1.2705494208814505e-20
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035441451473153176 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7746e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8840676476714978 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 1007.18s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2199031160338497, dt = 0.00035441451473153176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 311.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6277488425925928
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.583083854271089e-21,-1.6905907540101207e-18,-1.1418330051477329e-18)
    sum a = (9.583083854271088e-20,-4.100436871988854e-18,-1.4241155395141498e-18)
    sum e = 0.06836285054304693
    sum de = -1.231840015191929e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003561828684157371 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7558e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8853915250449245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22025753054858124, dt = 0.0003561828684157371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.88 us    (2.1%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 348.56 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.6277488425925928
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.779094317738616e-19,-1.6930613928163e-18,-1.1426951683611398e-18)
    sum a = (1.5572511263190519e-19,4.676619788726902e-19,-6.758360873630204e-19)
    sum e = 0.06836285075409455
    sum de = -1.5233887556368592e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.000358038902851485 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7678e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8916578905581124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22061371341699698, dt = 0.000358038902851485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.14 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 321.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6277488425925932
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.20410928648235e-19,-1.6910773949870953e-18,-1.14284126648831e-18)
    sum a = (3.490638293918244e-18,-4.320772932794477e-18,-2.167765946765246e-18)
    sum e = 0.06836285097676621
    sum de = -2.774879935205088e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034963401334765776 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7451e+04 | 82944 |      1 | 1.444e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8927832806630279 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.33s (niter = 3) global walltime = 1011.50s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.22097175231984847, dt = 0.00034963401334765776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 271.22 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6277488425925928
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.6945961835898355e-18,-1.1438890572472674e-18)
    sum a = (5.603708283785019e-18,-5.6082003543417085e-18,-6.066828843181226e-18)
    sum e = 0.06836284990483234
    sum de = -2.004926986150929e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003511475572510964 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7715e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8758325059411214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22132138633319615, dt = 0.0003511475572510964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.17 us    (1.9%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 346.46 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.6277488425925926
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-20,-1.6972539920025437e-18,-1.1466560832822049e-18)
    sum a = (7.86651395887478e-18,-5.3377028389863845e-19,-4.089127113468644e-18)
    sum e = 0.06836285007988717
    sum de = 2.8392544391964147e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003527435611232448 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6659e+04 | 82944 |      1 | 1.464e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8635326883465678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22167253389044725, dt = 0.0003527435611232448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.23 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 277.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.619044174382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.672690888115335e-19,-1.6957566351503138e-18,-1.1477623142332437e-18)
    sum a = (5.203914004239647e-18,5.4528870148441666e-18,9.243054893065372e-19)
    sum e = 0.06836285026577348
    sum de = -1.2861348271109296e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003544251085955725 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6155e+04 | 82944 |      1 | 1.477e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8597304424472638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.90s (niter = 2) global walltime = 1015.88s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2220252774515705, dt = 0.0003544251085955725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 262.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
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.6190441743827158
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.354079348994881e-20,-1.6926870536032426e-18,-1.146564306364907e-18)
    sum a = (-3.7989440697923716e-18,1.7062381331159228e-19,3.3698887797791677e-18)
    sum e = 0.06836285046247102
    sum de = -1.7097360040328052e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035619322114388346 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7687e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.887406518181524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22237970256016606, dt = 0.00035619322114388346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 282.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.619044174382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.126949862035032e-19,-1.692761921445854e-18,-1.1449067152971193e-18)
    sum a = (-2.8448282835515063e-18,-2.3310851475514425e-18,-2.9381628103956285e-18)
    sum e = 0.06836285067058191
    sum de = 6.226539195266362e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035804900529316504 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7534e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8894583227503733 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1018.77s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.22273589578130995, dt = 0.00035804900529316504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.59 us    (0.9%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 269.70 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6189236111111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.008098823014824e-19,-1.6959063708355368e-18,-1.147108450019651e-18)
    sum a = (-3.0358161500534247e-18,-5.301429369241117e-18,-7.298566720571145e-19)
    sum e = 0.06836285089040753
    sum de = -5.093209111840108e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035999355306106794 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6922e+04 | 82944 |      1 | 1.457e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.884593468696074 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1020.22s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2230939447866031, dt = 0.00035999355306106794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 263.90 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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.6189236111111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.749850312562653e-20,-1.6966924831829575e-18,-1.1470193288579272e-18)
    sum a = (3.937636748230162e-18,2.4357129576010034e-18,-4.55978550422634e-18)
    sum e = 0.06836285112231812
    sum de = 1.961050679483156e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.000350276029821718 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7694e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9014565534112651 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1021.66s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.22345393833966418, dt = 0.000350276029821718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 297.01 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.6189236111111107
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.354079348994881e-19,-1.694521315747224e-18,-1.1492030466865154e-18)
    sum a = (8.51604864441144e-18,-2.4276272305989624e-18,5.7582084890281685e-18)
    sum e = 0.06836284988444519
    sum de = 1.3869317478341914e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035182739875072355 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6350e+04 | 82944 |      1 | 1.472e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8566927992891287 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1023.14s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2238042143694859, dt = 0.00035182739875072355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 256.84 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.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.6970293884747092e-18,-1.1454797490063625e-18)
    sum a = (4.1686414766079237e-19,-4.047692476869057e-18,-2.3645930123022308e-18)
    sum e = 0.06836285006198556
    sum de = -9.152614511556342e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003534615183928609 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7171e+04 | 82944 |      1 | 1.451e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8730189408476761 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1024.59s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2241560417682366, dt = 0.0003534615183928609 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.92 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 351.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.018671414095393e-19,-1.6980026704286585e-18,-1.1476875465328968e-18)
    sum a = (-6.416174111804939e-19,-3.964252266278548e-19,-3.2409594343014182e-18)
    sum e = 0.06836285025074743
    sum de = 4.7167029667855714e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035518176030594455 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7225e+04 | 82944 |      1 | 1.449e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8778943554317694 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1026.04s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.22450950328662947, dt = 0.00035518176030594455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 296.15 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0876800174597686e-18,-1.6981524061138816e-18,-1.1490351479620768e-18)
    sum a = (1.5827061928069594e-19,2.2803247502608502e-18,2.938580741188401e-18)
    sum e = 0.06836285045075949
    sum de = 2.935392678709778e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003569891528109789 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7537e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8869814590991478 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1027.48s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2248646850469354, dt = 0.0003569891528109789 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 305.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.324835343818918e-19,-1.6974411616090723e-18,-1.1469086719547083e-18)
    sum a = (7.015116852696883e-18,-2.883272920732508e-18,-2.5781031491842883e-18)
    sum e = 0.0683628506624926
    sum de = -6.403569081242511e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003588848031703455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7150e+04 | 82944 |      1 | 1.451e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8854938218851262 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1028.93s (max_walltime = 1029.94s)  [SPH][rank=0]
---------------- t = 0.2252216741997464, dt = 0.0003588848031703455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 304.06 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (81.8%)
Warning: High interface/patch volume ratio.                                  [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.522720825602804e-19,-1.6981149721925757e-18,-1.1488157685638593e-18)
    sum a = (-1.7722715702992593e-18,-6.73061905077321e-20,-2.738175866030226e-18)
    sum e = 0.0683628508863197
    sum de = 2.3458577474207848e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035023241874741664 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7471e+04 | 82944 |      1 | 1.443e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8952072571706309 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 1030.38s > 1029.94s             [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 33):
   -> walltime = 1030.3772482480001 >= 1029.942819555
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000033.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (52.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000033.sham                 [Shamrock Dump][rank=0]
              - took 6.16 ms, bandwidth = 2.91 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 1030.3772482480001 -> 1060.3772482480001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.22558055900291674)
   -> iter = None (current = 703)
   -> walltime = 1060.3772482480001 (current = 1030.387781867)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1060.38s)     [SPH][rank=0]
---------------- t = 0.22558055900291674, dt = 0.00035023241874741664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.42 us    (1.3%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 323.66 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.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.6990133863039138e-18,-1.1497478640513298e-18)
    sum a = (2.4960938726671725e-18,-1.195377409056401e-18,-6.209512456794757e-18)
    sum e = 0.06836284978882912
    sum de = -8.281017608831667e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035178273391299226 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7530e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.874523770100892 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.77s (niter = 4) global walltime = 1031.83s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.22593079142166414, dt = 0.00035178273391299226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 262.46 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6189236111111112
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.583083854271088e-20,-1.6995748951235e-18,-1.1525408347264927e-18)
    sum a = (9.780136016024539e-18,-1.4411311024286264e-18,4.3124812164867483e-19)
    sum e = 0.0683628499656818
    sum de = 8.206902225946916e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035341594468610115 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6061e+04 | 82944 |      1 | 1.480e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.855964287995974 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22628257415557712, dt = 0.00035341594468610115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.0%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 335.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.618803047839506
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.15184508082889e-19,-1.6991631219891366e-18,-1.1512325260741773e-18)
    sum a = (5.867842032518366e-18,6.017053642843071e-18,7.500524479048461e-19)
    sum e = 0.06836285015390353
    sum de = 5.88349085162837e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035513518709982665 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7768e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8861127306421724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22663599010026322, dt = 0.00035513518709982665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 307.36 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6188030478395063
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.197885481783886e-19,-1.6965053135764286e-18,-1.1508788817341622e-18)
    sum a = (8.398375112786825e-18,-2.072341883486123e-18,-3.753055422016352e-18)
    sum e = 0.06836285035351466
    sum de = 9.731561531004657e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003569414985663119 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7278e+04 | 82944 |      1 | 1.448e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8828725198023298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22699112528736304, dt = 0.0003569414985663119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.38 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 309.40 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.618561921296296
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.98942740891943e-19,-1.6984144435630217e-18,-1.1530807787937919e-18)
    sum a = (-8.433113791758558e-19,-2.3048065347948083e-19,-2.3235929581552027e-18)
    sum e = 0.06836285056499582
    sum de = -9.514085821797115e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035883598390572187 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6967e+04 | 82944 |      1 | 1.456e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8825410373834246 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.36s (niter = 3) global walltime = 1037.65s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.22734806678592934, dt = 0.00035883598390572187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 346.33 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.6185619212962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0110153466255999e-18,-1.6981149721925757e-18,-1.153591612872181e-18)
    sum a = (5.292258058521208e-18,3.8714161414402966e-18,-5.0295338431646364e-18)
    sum e = 0.06836285078881264
    sum de = 9.824311638729002e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003493765711464837 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7849e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9009728562043134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22770690276983505, dt = 0.0003493765711464837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 276.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6185619212962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.126949862035032e-19,-1.6971042563173207e-18,-1.1558622854533362e-18)
    sum a = (-3.4007968827844527e-18,-1.1782701070196749e-18,1.6310589053495203e-18)
    sum e = 0.068362849598037
    sum de = -4.2711636365298095e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003508792006538694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7552e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8727187131363852 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22805627934098152, dt = 0.0003508792006538694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (1.9%)
   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.18 us    (0.3%)
   LB compute        : 354.40 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.6185619212962963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.037342828190786e-19,-1.6965427474977345e-18,-1.154166755985483e-18)
    sum a = (-1.7297466356959315e-18,8.760286263970781e-19,-1.869532112173099e-18)
    sum e = 0.06836284976958802
    sum de = 1.451835647417552e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003524640394113014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6916e+04 | 82944 |      1 | 1.457e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8667812598094725 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.35s (niter = 3) global walltime = 1041.99s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.2284071585416354, dt = 0.0003524640394113014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.36 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.6274956597222219
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3478555442964167e-19,-1.6960935404420654e-18,-1.1554130966550632e-18)
    sum a = (3.878753190016223e-18,6.416398715332774e-18,-3.1010303422353463e-18)
    sum e = 0.06836284995256521
    sum de = -4.990188729630304e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003541343991864267 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7477e+04 | 82944 |      1 | 1.443e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.879278910608304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2287596225810467, dt = 0.0003541343991864267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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 : 2.14 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 323.63 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.6274956597222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3799640750150368e-18,-1.6930613928163e-18,-1.156711511942198e-18)
    sum a = (-5.85346740673696e-18,-8.763280977675242e-19,-4.835385842605677e-18)
    sum e = 0.0683628501469326
    sum de = 3.9646435887421595e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035589128597801996 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7224e+04 | 82944 |      1 | 1.449e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8795599139625481 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22911375698023315, dt = 0.00035589128597801996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.2%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 312.07 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.6274956597222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4082185729647e-19,-1.6957940690716194e-18,-1.1587522741455343e-18)
    sum a = (-3.2869977620149835e-18,2.8308279969831573e-18,1.33320177787273e-18)
    sum e = 0.06836285035315778
    sum de = -7.64415471161484e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.000357735822602399 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7287e+04 | 82944 |      1 | 1.448e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.884899359085892 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.90s (niter = 2) global walltime = 1046.33s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.22946964826621116, dt = 0.000357735822602399 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 300.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6274956597222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.912267984472113e-19,-1.6926870536032426e-18,-1.1571572052438045e-18)
    sum a = (2.9300278884433853e-18,-2.897610112592609e-18,-2.940065109873806e-18)
    sum e = 0.06836285057173547
    sum de = 2.5188642268974756e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034938930471892254 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5896e+04 | 82944 |      1 | 1.484e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8678753865397079 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22982738408881356, dt = 0.00034938930471892254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 284.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6274956597222223
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6914143002788472e-18,-1.6961309743633713e-18,-1.1589892234754623e-18)
    sum a = (-5.9055754251945585e-19,1.0030044874661701e-18,1.1907806617338133e-18)
    sum e = 0.06836284952730434
    sum de = 1.0812269692582737e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003508915169177688 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6611e+04 | 82944 |      1 | 1.465e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8584816650400121 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1049.28s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.23017677339353249, dt = 0.0003508915169177688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 300.41 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.627495659722222
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.366526958391809e-19,-1.6950828245668102e-18,-1.157783616456513e-18)
    sum a = (-2.2765813581302753e-18,-9.628004559837984e-20,6.663625451299152e-19)
    sum e = 0.0683628497006731
    sum de = 8.704216445103597e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003524761554597534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6818e+04 | 82944 |      1 | 1.460e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8653226828947228 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1050.74s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.23052766491045026, dt = 0.0003524761554597534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 266.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.627363040123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.976979799522502e-19,-1.6947833531963644e-18,-1.1576903597811863e-18)
    sum a = (-8.09770585685907e-19,-4.230033107549348e-20,-4.593151458670348e-18)
    sum e = 0.06836284988547277
    sum de = -1.4379443070825816e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003541462952938881 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5944e+04 | 82944 |      1 | 1.483e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8558522186478199 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.46s (niter = 1) global walltime = 1052.23s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.23088014106591, dt = 0.0003541462952938881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 272.50 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.627363040123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9166167708542177e-19,-1.695269994173339e-18,-1.1602825242438245e-18)
    sum a = (2.847972732941189e-18,1.3846807490995607e-18,-4.178389369140791e-18)
    sum e = 0.06836285008182236
    sum de = -1.3436060125821339e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035590295412982735 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5777e+04 | 82944 |      1 | 1.487e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8573442591729658 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.46s (niter = 1) global walltime = 1053.72s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.2312342873612039, dt = 0.00035590295412982735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 263.21 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.6273630401234567
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395770963567772e-19,-1.6944838818259184e-18,-1.1616665034826781e-18)
    sum a = (2.452071581211615e-18,1.6840023838603093e-18,-1.892616701040893e-18)
    sum e = 0.06836285029012018
    sum de = -3.4666940948750377e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003577472417940922 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2681e+04 | 82944 |      1 | 1.943e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6592989297952101 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1055.66s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.23159019031533373, dt = 0.0003577472417940922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 323.20 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.6184293016975309
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.082888475532633e-18,-1.693660335557192e-18,-1.1618978751046566e-18)
    sum a = (-3.1468451606462687e-18,-3.0014518102947496e-19,-8.729412734266154e-19)
    sum e = 0.06836285051067373
    sum de = -1.8831871758068046e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.60e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035968025534233145 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4184e+04 | 82944 |      1 | 2.426e+00 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5307850075940806 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1058.09s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.23194793755712784, dt = 0.00035968025534233145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 2.09 us    (0.2%)
   gen split merge   : 1.16 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.1%)
   LB compute        : 962.30 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.6184293016975304
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.36558944923363e-18,-1.6934357320293575e-18,-1.1620873115866673e-18)
    sum a = (1.1002578150184994e-17,2.515559511746161e-18,-7.628284596750127e-19)
    sum e = 0.0683628507438592
    sum de = 1.8970679282299344e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003500322307340969 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0887e+04 | 82944 |      1 | 1.630e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.794400758671176 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1059.72s (max_walltime = 1060.38s)  [SPH][rank=0]
---------------- t = 0.23230761781247017, dt = 0.0003500322307340969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.29 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 381.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.6181881751543208
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.748912803404474e-18,-1.6923875822327966e-18,-1.1623208839926936e-18)
    sum a = (3.743392130574644e-18,-4.971673956458796e-18,7.090916710963049e-19)
    sum e = 0.06836284954136307
    sum de = 1.8475906161984426e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035157165684349535 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7698e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8765754033054306 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 1061.16s > 1060.38s             [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 34):
   -> walltime = 1061.1580142500002 >= 1060.3772482480001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000034.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (55.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000034.sham                 [Shamrock Dump][rank=0]
              - took 6.08 ms, bandwidth = 2.95 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 1061.1580142500002 -> 1091.1580142500002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.23265765004320427)
   -> iter = None (current = 723)
   -> walltime = 1091.1580142500002 (current = 1061.16839936)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1091.16s)     [SPH][rank=0]
---------------- t = 0.23265765004320427, dt = 0.00035157165684349535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.26 us    (1.3%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 309.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.6183087384259256
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2601755268366482e-18,-1.6968422188681803e-18,-1.1618117790488419e-18)
    sum a = (-1.4542329748856378e-18,3.8497044670829637e-19,-3.425838273865705e-18)
    sum e = 0.06836284972173452
    sum de = 1.0136549158910619e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003531937709648948 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7636e+04 | 82944 |      1 | 1.439e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8794778116705307 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.76s (niter = 4) global walltime = 1062.61s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23300922170004776, dt = 0.0003531937709648948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 294.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.618188175154321
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.343506757914311e-19,-1.6943341461406953e-18,-1.1637684369625003e-18)
    sum a = (6.171506002150581e-18,2.658557091134112e-18,-1.4904044546694184e-18)
    sum e = 0.06836284991375555
    sum de = -9.49778043756247e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035490192800240704 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7511e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8816174556700811 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23336241547101266, dt = 0.00035490192800240704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.2%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 307.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6181881751543208
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.874925156281327e-20,-1.6931362606589115e-18,-1.163910279318106e-18)
    sum a = (-3.1145022526381037e-18,-3.8872881240739335e-18,-1.1777012587637989e-19)
    sum e = 0.06836285011723758
    sum de = 2.9620742165482883e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035669715406864587 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6311e+04 | 82944 |      1 | 1.473e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.867392638132532 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23371731739901508, dt = 0.00035669715406864587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 321.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.6181881751543208
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0589307658969553e-18,-1.6967299171042631e-18,-1.1637796407846226e-18)
    sum a = (1.1166688461189387e-17,-3.1463959535905997e-18,-6.178103024161623e-19)
    sum e = 0.06836285033268248
    sum de = -1.052840777613414e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035858055715764847 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7661e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.892690204296872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23407401455308371, dt = 0.00035858055715764847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.23 us    (2.2%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 307.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6181881751543208
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.162417671909459e-19,-1.6969170867107918e-18,-1.1640642920703116e-18)
    sum a = (-8.228874317114406e-18,3.598597722964017e-18,-9.963747824495393e-19)
    sum e = 0.06836285056036082
    sum de = -8.458682769518257e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034997969363981675 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6725e+04 | 82944 |      1 | 1.462e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8828310346159008 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.36s (niter = 3) global walltime = 1068.43s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23443259511024137, dt = 0.00034997969363981675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 284.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6181881751543208
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.116429269022582e-18,-1.6953074280946447e-18,-1.1645170240829898e-18)
    sum a = (6.016379832259568e-18,-2.924337932404912e-19,1.5891074544028234e-18)
    sum e = 0.06836284949350499
    sum de = 7.218414776501147e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003515169714623274 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7695e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8763983721973897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23478257480388118, dt = 0.0003515169714623274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 353.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.6181881751543208
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.20410928648235e-19,-1.6944464479046127e-18,-1.1634718412941638e-18)
    sum a = (-3.4714721262097015e-18,-3.848356845915957e-18,1.0256595029364638e-18)
    sum e = 0.06836284967444384
    sum de = -1.414629725209407e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003531370124425826 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7731e+04 | 82944 |      1 | 1.437e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8807924416063283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2351340917753435, dt = 0.0003531370124425826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 318.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6181881751543206
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.599880250050123e-19,-1.6977406329795184e-18,-1.163196091721057e-18)
    sum a = (3.723028077384318e-18,-1.1158303262816899e-18,2.105985906214232e-18)
    sum e = 0.06836284986665361
    sum de = -6.642008855894596e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035484293455178276 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6668e+04 | 82944 |      1 | 1.464e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8685646331932194 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.35s (niter = 3) global walltime = 1072.77s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23548722878778608, dt = 0.00035484293455178276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 287.78 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.61817611882716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.120726057336568e-19,-1.6977219160188653e-18,-1.1622708584474444e-18)
    sum a = (-8.181557840583942e-19,-1.73768262701275e-18,-2.164591545216969e-18)
    sum e = 0.0683628500699937
    sum de = -6.714853689358466e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035663576689575486 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7123e+04 | 82944 |      1 | 1.452e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8797541356517284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23584207172233787, dt = 0.00035663576689575486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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    (2.5%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 266.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6181761188271602
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1499700625125307e-19,-1.698377009641716e-18,-1.1638097238968863e-18)
    sum a = (4.611859104867962e-19,-2.302785103044298e-18,-2.6793539793615755e-18)
    sum e = 0.06836285028490278
    sum de = 1.3474176608447783e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003585166122734573 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6986e+04 | 82944 |      1 | 1.456e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.882092153990664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23619870748923363, dt = 0.0003585166122734573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (1.9%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 347.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6181761188271602
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947735794346539e-19,-1.6993128576743596e-18,-1.1648328821429355e-18)
    sum a = (2.5688654156855436e-18,2.7150074444631777e-18,-6.024199999539929e-19)
    sum e = 0.06836285051162509
    sum de = -2.0390200622779145e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034913790960817173 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7354e+04 | 82944 |      1 | 1.446e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8924599923157309 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.90s (niter = 2) global walltime = 1077.13s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.2365572241015071, dt = 0.00034913790960817173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 336.45 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6181761188271602
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.133173666733497e-19,-1.6982459909171459e-18,-1.164696486246542e-18)
    sum a = (-4.30639830701307e-18,-5.2952527722256686e-18,-1.002314427384876e-18)
    sum e = 0.06836284935259769
    sum de = -4.0826988057657276e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035062704516713696 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7481e+04 | 82944 |      1 | 1.443e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8710427118619768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23690636201111526, dt = 0.00035062704516713696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.74 us    (2.2%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 324.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.6181761188271602
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.629124255226085e-19,-1.6999679512972101e-18,-1.1650987532511043e-18)
    sum a = (8.04499889566058e-18,6.188575870266001e-19,4.2190780138357924e-19)
    sum e = 0.06836284952636458
    sum de = 2.05782419370696e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.000352198238263136 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7584e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8763317123322105 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1080.01s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.2372569890562824, dt = 0.000352198238263136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 306.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.6180555555555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.145621276130426e-20,-1.6998369325726401e-18,-1.164720157986807e-18)
    sum a = (8.155204359984697e-18,3.992252839415246e-18,-2.0859462812236797e-18)
    sum e = 0.06836284971090946
    sum de = 1.7670377829145587e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.00035385477797030067 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5598e+04 | 82944 |      1 | 1.492e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8498908969741656 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1081.50s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23760918729454553, dt = 0.00035385477797030067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 300.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.6180555555555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.76328742918588e-18,-1.6963181439699e-18,-1.1658806252346211e-18)
    sum a = (4.394442889924186e-18,1.9312908680060704e-18,-3.525852752805379e-18)
    sum e = 0.06836284990604564
    sum de = 2.2094854429128424e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003555976578908139 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6632e+04 | 82944 |      1 | 1.465e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8697771472556876 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1082.97s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23796304207251584, dt = 0.0003555976578908139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 291.85 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6180555555555554
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.187312890703316e-20,-1.696467879655123e-18,-1.1673800722121142e-18)
    sum a = (-1.0373688272248454e-18,-6.1301789530290375e-19,-1.51805748436612e-18)
    sum e = 0.0683628501122272
    sum de = 1.4331797467542762e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035742799540319965 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7442e+04 | 82944 |      1 | 1.444e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.886560459921843 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.45s (niter = 1) global walltime = 1084.42s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23831863973040665, dt = 0.00035742799540319965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 264.41 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.6267602237654324
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.514127248974832e-18,-1.6969919545534033e-18,-1.1675636729144208e-18)
    sum a = (1.1918960543749666e-19,-2.020683072084193e-18,1.0332965292673371e-18)
    sum e = 0.06836285032970829
    sum de = 6.679278305573785e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.49e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034912870663339886 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6122e+04 | 82944 |      1 | 1.478e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8706489734638918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1085.89s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23867606772580985, dt = 0.00034912870663339886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 266.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6267602237654324
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.318611539120454e-19,-1.6995374612021941e-18,-1.166740114982212e-18)
    sum a = (-4.436368881786622e-18,4.274953813116243e-18,2.626347751989393e-19)
    sum e = 0.06836284930545426
    sum de = -3.0751531150067374e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035061630330972656 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7377e+04 | 82944 |      1 | 1.446e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8694488689063374 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1087.34s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23902519643244324, dt = 0.00035061630330972656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 340.39 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.626519097222222
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3061639297235256e-19,-1.6960935404420654e-18,-1.16678065980943e-18)
    sum a = (-5.342569248756132e-19,4.4841345653727545e-18,-8.684989290671845e-19)
    sum e = 0.06836284947639065
    sum de = -6.782192808665183e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.52e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003521861345212839 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7503e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8750702549719762 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1088.78s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23937581273575298, dt = 0.0003521861345212839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 308.15 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6266276041666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0972631013140396e-18,-1.6942779952587367e-18,-1.1672742177944111e-18)
    sum a = (7.407723819351552e-18,1.3637926210109543e-18,1.1392579783104667e-18)
    sum e = 0.0683628496578078
    sum de = -5.955488652144986e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.54e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003538412616970333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6691e+04 | 82944 |      1 | 1.463e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.866571748525234 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1090.25s (max_walltime = 1091.16s)  [SPH][rank=0]
---------------- t = 0.23972799887027427, dt = 0.0003538412616970333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 296.39 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.6266276041666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.545741026080303e-19,-1.695569465543785e-18,-1.166550303592155e-18)
    sum a = (-5.561782291922583e-18,-6.501523452382041e-19,-5.037080484285995e-19)
    sum e = 0.06836284984957003
    sum de = 1.1015239962568549e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035558268657865364 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7014e+04 | 82944 |      1 | 1.455e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8756064060470703 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 1091.70s > 1091.16s             [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 35):
   -> walltime = 1091.7049720290001 >= 1091.1580142500002
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dustysod_128/dump/dump_0000035.sham                  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (53.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000035.sham                 [Shamrock Dump][rank=0]
              - took 6.34 ms, bandwidth = 2.83 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 1091.7049720290001 -> 1121.7049720290001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.2400818401319713)
   -> iter = None (current = 744)
   -> walltime = 1121.7049720290001 (current = 1091.715611022)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1121.70s)     [SPH][rank=0]
---------------- t = 0.2400818401319713, dt = 0.00035558268657865364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.70 us    (1.6%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 268.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6266276041666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.947735794346539e-19,-1.6950453906455046e-18,-1.1669516124315083e-18)
    sum a = (1.207258935678845e-17,1.9285956256720566e-18,2.6832132452062997e-18)
    sum e = 0.06836285005214
    sum de = 9.85438130835653e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.57e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003574115192483019 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7673e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8900795047654775 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.76s (niter = 4) global walltime = 1093.15s (max_walltime = 1121.70s)  [SPH][rank=0]
---------------- t = 0.24043742281854996, dt = 0.0003574115192483019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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.23 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.69 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.6266276041666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3272571138165458e-18,-1.6942592782980838e-18,-1.1654586401087275e-18)
    sum a = (-3.623004639655363e-18,-3.0007031318686346e-19,-5.8711348850419455e-19)
    sum e = 0.06836285026578054
    sum de = -7.692753226963556e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.59e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035932885169958186 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5879e+04 | 82944 |      1 | 1.484e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8668329316824176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24079483433779827, dt = 0.00035932885169958186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.54 us    (2.1%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 371.64 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.6266276041666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6099580875175429e-18,-1.693510599871969e-18,-1.1662511317198522e-18)
    sum a = (-2.5404156354931765e-18,9.89153936583044e-19,-9.565349259190632e-19)
    sum e = 0.06836285049078143
    sum de = 3.2644649787180735e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00034976590429821935 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7396e+04 | 82944 |      1 | 1.445e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8951464573249603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24115416318949787, dt = 0.00034976590429821935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 267.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6267481674382716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8207859323115067e-19,-1.6931924115408701e-18,-1.1666603438297631e-18)
    sum a = (-3.2630400523793056e-18,-1.3335460125959111e-18,-1.956245953915909e-18)
    sum e = 0.06836284930874119
    sum de = 8.919256934587783e-19
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003512898512995366 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6831e+04 | 82944 |      1 | 1.459e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8627411427498012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2415039290937961, dt = 0.0003512898512995366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance 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.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 319.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.6181640625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.803989536532473e-19,-1.6942967122193897e-18,-1.1675148193718274e-18)
    sum a = (4.272408306467452e-18,3.2744199644562525e-18,-3.673711397427432e-18)
    sum e = 0.06836284948054218
    sum de = 8.135751458377555e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.09e+00 |
+-------------+----------+
Info: cfl dt = 0.0003528962793628633 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6680e+04 | 82944 |      1 | 1.463e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8642024991954733 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.38s (niter = 3) global walltime = 1099.01s (max_walltime = 1121.70s)  [SPH][rank=0]
---------------- t = 0.24185521894509562, dt = 0.0003528962793628633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.23 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 382.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.6181640624999998
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.504049411507412e-19,-1.6929865249736884e-18,-1.1691248940914396e-18)
    sum a = (2.0259238210669972e-18,-3.6745137153720706e-19,-2.3635315087680717e-18)
    sum e = 0.06836284966295066
    sum de = 1.2624179045878092e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035458851855681893 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5039e+04 | 82944 |      1 | 1.507e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8430198592363146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24220811522445848, dt = 0.00035458851855681893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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 : 2.16 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 363.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6181640624999998
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6415718646230135e-19,-1.6931736945802173e-18,-1.1697246039869966e-18)
    sum a = (-4.9065389333867974e-18,-6.214030936753909e-19,-5.459450605643228e-18)
    sum e = 0.06836284985593427
    sum de = 1.2506441466209745e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003563675805670168 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6525e+04 | 82944 |      1 | 1.467e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8699310621060151 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2425627037430153, dt = 0.0003563675805670168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.2%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.85 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.6182846257716053
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0349730562612776e-18,-1.6923875822327966e-18,-1.1722183310330935e-18)
    sum a = (1.8140478264764724e-18,1.588396148845433e-18,-1.3438464499060442e-18)
    sum e = 0.06836285006000109
    sum de = 1.2476795313055844e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035823457244794693 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7526e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.889780743272844 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.39s (niter = 3) global walltime = 1103.43s (max_walltime = 1121.70s)  [SPH][rank=0]
---------------- t = 0.24291907132358231, dt = 0.00035823457244794693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.1%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 255.00 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618284625771605
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.810213341230937e-19,-1.6933234302654403e-18,-1.1719740577088214e-18)
    sum a = (1.1208090378153541e-18,2.4439858542095736e-18,-9.30090493817129e-19)
    sum e = 0.06836285027551385
    sum de = -3.8734816677939155e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.50e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.0003497087293546039 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5778e+04 | 82944 |      1 | 1.487e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.867259153227423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24327730589603025, dt = 0.0003497087293546039 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 283.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.6182846257716048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0124476093969286e-19,-1.6914330172395e-18,-1.1722369746982522e-18)
    sum a = (3.6236035823962555e-19,1.4260826660637163e-18,-1.4063258388668838e-18)
    sum e = 0.06836284922431587
    sum de = 3.1797616839926435e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.51e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035123045661120166 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7002e+04 | 82944 |      1 | 1.455e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.865194958532158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24362701462538486, dt = 0.00035123045661120166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 308.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.6184051890432096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0253899724070064e-18,-1.6911148289084012e-18,-1.1727756375966332e-18)
    sum a = (1.984596771945453e-18,-2.2196817977455408e-18,-2.3441281398809223e-18)
    sum e = 0.06836284939383022
    sum de = 1.4906085805781177e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.53e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003528347691746673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7688e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.879423269574315 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.93s (niter = 2) global walltime = 1107.81s (max_walltime = 1121.70s)  [SPH][rank=0]
---------------- t = 0.24397824508199606, dt = 0.0003528347691746673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.0%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 285.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.6184051890432096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7057889260602538e-18,-1.6933421472260931e-18,-1.173785728897644e-18)
    sum a = (1.237340834840143e-18,2.5491003052361096e-18,-2.3219855233727116e-18)
    sum e = 0.06836284957413129
    sum de = 7.876559376517739e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.55e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.00035452476692948324 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6166e+04 | 82944 |      1 | 1.477e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.860132472246136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24433107985117072, dt = 0.00035452476692948324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [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    (2.4%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 265.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.6184051890432096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8974506031456757e-18,-1.690852791459261e-18,-1.1746131457780776e-18)
    sum a = (-8.29835167505787e-19,3.2723236648631308e-18,-1.5513215133250385e-18)
    sum e = 0.06836284976525099
    sum de = 5.6336161321883516e-18
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.56e-04 |
|       force | 2.01e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.08e+00 |
+-------------+----------+
Info: cfl dt = 0.0003563014666877339 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7529e+04 | 82944 |      1 | 1.442e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8852128880246241 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.46s (niter = 1) global walltime = 1110.73s (max_walltime = 1121.70s)  [SPH][rank=0]
---------------- t = 0.2446856046181002, dt = 0.00031439538189978466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 39.44 us   (11.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 277.78 us  (82.3%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.6184051890432096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.31238773442199e-19,-1.6895613211742128e-18,-1.174968492305257e-18)
    sum a = (-5.3192104818613465e-18,4.659475052768871e-18,1.69710772271109e-18)
    sum e = 0.06836284515110189
    sum de = 1.1450191380983632e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 3.58e-04 |
|       force | 2.00e-03 |
| dust1_fluid | 5.86e-04 |
|  dust_drift | 4.07e+00 |
+-------------+----------+
Info: cfl dt = 0.00035794898038545844 cfl multiplier : 0.9999999999999997      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6108e+04 | 82944 |      1 | 1.478e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7656288015532637 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.46s (niter = 1) global walltime = 1112.21s (max_walltime = 1121.70s)  [SPH][rank=0]
Info: iteration since start : 759                                                     [SPH][rank=0]
Info: time since start : 1112.213853484 (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/dustysod_128/l2_error_0000009.npy
Saving data to _to_trash/dustysod_128/dust_mass_0000009.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
240 glob_str = f"{dump_folder}sod_*.png"
241 ani = show_image_sequence(glob_str)
242
243 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
244 ani.save("_to_trash/sod.gif", writer=writer)
245
246 if shamrock.sys.world_rank() == 0:
247     plt.show()
252 t_l2, l2_rho, l2_v, l2_P = [], [], [], []
253 for i in l2_error_analysis.get_list_analysis_id():
254     data = l2_error_analysis.load_analysis(i).item()
255     t_l2.append(data["time"])
256     l2_rho.append(data["l2_rho"])
257     l2_v.append(data["l2_v"])
258     l2_P.append(data["l2_P"])
259
260 l2_v = np.array(l2_v)
261
262 plt.plot(t_l2, l2_rho, label="l2_rho")
263 plt.plot(t_l2, l2_v[:, 0], label="l2_v (vx)")
264 plt.plot(t_l2, l2_v[:, 1], label="l2_v (vy)")
265 plt.plot(t_l2, l2_v[:, 2], label="l2_v (vz)")
266 plt.plot(t_l2, l2_P, label="l2_P")
267 plt.legend()
268 plt.xlabel("t")
269 plt.ylabel("L2 error")
270 plt.yscale("log")
271 plt.tight_layout()
272 plt.savefig(f"{dump_folder}/l2_error.png")
273 plt.show()
run sod dust tva
278 t_dmass, dmass = [], []
279 for i in dust_mass_analysis.get_list_analysis_id():
280     data = dust_mass_analysis.load_analysis(i).item()
281     t_dmass.append(data["time"])
282     dmass.append(data["dust_mass"])
283
284 dmass = np.array(dmass)[:, 0]
285
286
287 plt.plot(t_dmass, (dmass - dmass[0]) / dmass[0], label="dust_mass")
288 plt.legend()
289 plt.xlabel("t")
290 plt.ylabel("Dust mass deviation")
291 plt.yscale("symlog", linthresh=1e-8)
292 plt.tight_layout()
293 plt.savefig(f"{dump_folder}/dust_mass.png")
294 plt.show()
run sod dust tva
298 print("##### Test result #####")
299 result = {
300     "t": float(t_l2[-1]),
301     "l2_rho": l2_rho[-1],
302     "l2_v": l2_v[-1].tolist(),
303     "l2_P": l2_P[-1],
304     "dust_mass_conservation": (dmass[-1] - dmass[0]) / dmass[0],
305     "resol": resol,
306 }
307 print(result)
308
309 json.dump(result, open(f"{dump_folder}/test_result.json", "w"), indent=4)
##### Test result #####
{'t': 0.245, 'l2_rho': 0.00015742350113875263, 'l2_v': [0.00118053495263848, 3.323814993835499e-05, 3.388005817852837e-07], 'l2_P': 0.0001256574961190071, 'dust_mass_conservation': np.float64(-3.148662790778429e-06), 'resol': 128}

Total running time of the script: (18 minutes 31.956 seconds)

Estimated memory usage: 734 MB

Gallery generated by Sphinx-Gallery