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"
            },
            "evol_mode": {
                "type": "none"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 2.220446049250313e-16,
                "clamp_dust_frac": null,
                "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"
        },
        "neigh_cache_strategy": "two_stage",
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": 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
    }
]
------------------------------------

---------------------------- 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 = 9.0e+06 max = 8.3e+04) rate = 8.294400e+04 N.s^-1
SPH setup: the generation step took : 0.017161874 s
SPH setup: final particle count = 82944 beginning injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.32 us   (81.9%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (0.2%)
   patch tree reduce : 1.26 us    (0.2%)
   gen split merge   : 1.01 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.1%)
   LB compute        : 810.82 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.5%)
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.017865847 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   6.0% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.062231013 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.17 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 365.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.8548779899691358
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}}  [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.00859375 unconverged cnt = 82944
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9294584297839507
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.009453125000000001 unconverged cnt = 82872
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9549213927469137
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010398437500000003 unconverged cnt = 82800
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.157998167438272
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.011438281250000005 unconverged cnt = 82800
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.200605227623457
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.012582109375000006 unconverged cnt = 82728
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.4560426311728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013840320312500008 unconverged cnt = 82512
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013920379857667285 unconverged cnt = 576
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (-4.13989222504511e-18,-2.8709421870543954e-17,-1.3123560990272466e-17)
    sum e = 0.0683628626342463
    sum de = -1.1926223897340549e-18
Info: CFL 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.0083e+04 | 82944 |      1 | 4.130e+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 = 16.205051113)

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 : 16.205291471000002 (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 = 16.205370118 >= 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     : 10.44 us   (69.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000000.sham                 [Shamrock Dump][rank=0]
              - took 14.22 ms, bandwidth = 1.26 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.0 -> 0.02722222222222222
[Simulation] Advancing callback "checkpoint"
   -> walltime = 16.205370118 -> 46.205370118000005

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

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 46.21s)       [SPH][rank=0]
---------------- t = 0, dt = 5.882433273178804e-06 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 82944.0 min = 82944.0 factor = 1
 - strategy "round robin" : max = 78796.8 min = 78796.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 82944
    max = 82944
    avg = 82944
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 390.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.026883480581841e-23,-1.6757528834525555e-22,-7.75422805254566e-23)
    sum a = (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.9302e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.015140652937281876 (tsim/hr)                          [sph::Model][rank=0]
Info: next walltime check in 5.60s (niter = 4) global walltime = 20.12s (max_walltime = 46.21s)  [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     : 5.02 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 382.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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    | 4.0421e+04 | 82944 |      1 | 2.052e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.24780209143855064 (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.19 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 336.86 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1149e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.29960075422112653 (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     : 6.90 us    (1.8%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 357.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 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.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    | 4.0947e+04 | 82944 |      1 | 2.026e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.36398428468991756 (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.36 us    (1.7%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 360.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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.2502e+04 | 82944 |      1 | 1.327e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.34874519264711495 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 3.27s (niter = 2) global walltime = 26.88s (max_walltime = 46.21s)  [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     : 5.38 us    (1.4%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 359.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2233e+04 | 82944 |      1 | 1.333e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5579535591827707 (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.48 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 358.01 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123453
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.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    | 4.0663e+04 | 82944 |      1 | 2.040e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4427470642086869 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.30s (niter = 2) global walltime = 30.26s (max_walltime = 46.21s)  [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     : 5.31 us    (1.3%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 374.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.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.2418e+04 | 82944 |      1 | 1.329e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3702124068220471 (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     : 6.64 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 416.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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.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.1965e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.537076643952819 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.16s (niter = 2) global walltime = 32.93s (max_walltime = 46.21s)  [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     : 5.42 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 387.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 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.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.0624e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6210513934254933 (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.44 us    (2.0%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 346.99 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 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.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    | 4.0809e+04 | 82944 |      1 | 2.032e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.45174012163017446 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.60s (niter = 1) global walltime = 36.33s (max_walltime = 46.21s)  [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     : 5.63 us    (1.4%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 395.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0762e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3474702826122314 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.58s (niter = 1) global walltime = 37.70s (max_walltime = 46.21s)  [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     : 5.11 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 336.68 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.2404e+04 | 82944 |      1 | 1.329e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49843272167182673 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.56s (niter = 1) global walltime = 39.03s (max_walltime = 46.21s)  [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.72 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 400.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 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.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.2215e+04 | 82944 |      1 | 1.333e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5808563230758316 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 40.36s (max_walltime = 46.21s)  [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.42 us    (1.7%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 348.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 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.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    | 6.2656e+04 | 82944 |      1 | 1.324e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6318995471532707 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 41.69s (max_walltime = 46.21s)  [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     : 5.61 us    (1.5%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 357.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1837e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6465895922537453 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 43.03s (max_walltime = 46.21s)  [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     : 5.23 us    (1.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 388.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9437e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6298220473404637 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 44.43s (max_walltime = 46.21s)  [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     : 4.99 us    (1.3%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 366.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.9688e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6326381312557557 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 45.82s (max_walltime = 46.21s)  [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.22 us    (1.3%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 372.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.0079e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6322164622545273 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 47.20s > 46.21s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 1):
   -> walltime = 47.200966672 >= 46.205370118000005
--------------------------------
[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     : 5.39 us    (54.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000001.sham                 [Shamrock Dump][rank=0]
              - took 6.53 ms, bandwidth = 2.74 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 47.200966672 -> 77.20096667199999

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.0036132042183884354)
   -> iter = None (current = 19)
   -> walltime = 77.20096667199999 (current = 47.210787651000004)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 77.20s)       [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     : 5.77 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 372.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 5.9408e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6181223025308079 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.99s (niter = 5) global walltime = 48.61s (max_walltime = 77.20s)  [SPH][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     : 5.45 us    (0.8%)
   patch tree reduce : 1.29 us    (0.2%)
   gen split merge   : 762.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.1%)
   LB compute        : 701.73 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 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.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.2137e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6379040010706434 (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     : 5.63 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 401.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1282e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6191507279676609 (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     : 5.97 us    (1.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 403.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2234e+04 | 82944 |      1 | 1.333e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6186790363140493 (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     : 6.29 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 375.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 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.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.2101e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6076103886607125 (tsim/hr)                            [sph::Model][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     : 5.95 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 312.57 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.86 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.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.2230e+04 | 82944 |      1 | 1.333e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5995807916792574 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 4) global walltime = 55.30s (max_walltime = 77.20s)  [SPH][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     : 5.24 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 310.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.0772e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5769998239926662 (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.96 us    (2.0%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.59 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 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.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    | 6.1761e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5782892295604422 (tsim/hr)                            [sph::Model][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.26 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 401.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1924e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5722666987619061 (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     : 6.87 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 353.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1092e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5576739248445486 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.05s (niter = 3) global walltime = 60.71s (max_walltime = 77.20s)  [SPH][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     : 5.96 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 370.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1570e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5555960033867032 (tsim/hr)                            [sph::Model][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     : 6.26 us    (1.6%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 375.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.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.1930e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5528621472370825 (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     : 6.44 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 379.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.1249e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5409892879244624 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.70s (niter = 2) global walltime = 64.76s (max_walltime = 77.20s)  [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     : 5.81 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 367.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2029e+04 | 82944 |      1 | 1.337e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5419666465961319 (tsim/hr)                            [sph::Model][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     : 7.08 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 346.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1886e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5352242333200542 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 67.44s (max_walltime = 77.20s)  [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     : 5.23 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 332.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 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.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.1914e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5303412498988638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 68.78s (max_walltime = 77.20s)  [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     : 5.31 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 352.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1653e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5233416220882154 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 70.13s (max_walltime = 77.20s)  [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     : 5.26 us    (1.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 400.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1689e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5192031399500945 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 71.47s (max_walltime = 77.20s)  [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     : 4.86 us    (1.3%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 336.56 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 24.27 us   (6.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1782e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5158321824397031 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 72.81s (max_walltime = 77.20s)  [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     : 5.20 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 351.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.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.1612e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5105517114487131 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 74.16s (max_walltime = 77.20s)  [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     : 5.50 us    (1.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 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.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    | 6.0650e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49903150401288277 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 75.53s (max_walltime = 77.20s)  [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     : 5.63 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 330.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.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.0695e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4960935496407911 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 76.90s (max_walltime = 77.20s)  [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     : 5.34 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 337.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.1994e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5035619389937048 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 78.24s > 77.20s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 2):
   -> walltime = 78.23867954500001 >= 77.20096667199999
--------------------------------
[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     : 5.23 us    (53.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000002.sham                 [Shamrock Dump][rank=0]
              - took 9.97 ms, bandwidth = 1.80 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 78.23867954500001 -> 108.23867954500001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.008409267437586772)
   -> iter = None (current = 42)
   -> walltime = 108.23867954500001 (current = 78.251902841)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 108.24s)      [SPH][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     : 5.38 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 347.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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    | 6.2008e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5007419809410993 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.69s (niter = 5) global walltime = 79.59s (max_walltime = 108.24s)  [SPH][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     : 5.49 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 313.13 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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 = (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    | 6.1732e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4957931417934691 (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     : 5.71 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 319.93 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1712e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49310968731023475 (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     : 6.42 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 347.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.9260e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47126369412072033 (tsim/hr)                           [sph::Model][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.51 us    (1.8%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 340.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2218e+04 | 82944 |      1 | 1.333e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49873657672968935 (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     : 6.28 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 392.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2271e+04 | 82944 |      1 | 1.332e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49707290663021375 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 4) global walltime = 86.35s (max_walltime = 108.24s)  [SPH][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     : 5.67 us    (1.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 383.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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 = (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.2074e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49360072555524886 (tsim/hr)                           [sph::Model][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     : 5.57 us    (1.4%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 373.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1082e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4840061861552094 (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     : 5.84 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 323.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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 = (-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    | 6.1727e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4875596387621926 (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     : 6.29 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 357.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.1761e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4864190697496309 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.04s (niter = 3) global walltime = 91.74s (max_walltime = 108.24s)  [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     : 4.96 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 339.97 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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 = (-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    | 6.1535e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.48338098673138596 (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     : 6.56 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 335.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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    | 6.0914e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47880592785936227 (tsim/hr)                           [sph::Model][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     : 5.65 us    (1.3%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 407.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.1337e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4889283818248911 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.70s (niter = 2) global walltime = 95.80s (max_walltime = 108.24s)  [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     : 5.35 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 318.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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 = (-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    | 6.1476e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4897298570153713 (tsim/hr)                            [sph::Model][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     : 5.69 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 367.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.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    | 6.1499e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.48972512055491246 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 98.50s (max_walltime = 108.24s)  [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     : 5.08 us    (1.2%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 367.45 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 24.23 us   (6.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1155e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4869162765004599 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 99.86s (max_walltime = 108.24s)  [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     : 5.53 us    (1.5%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 358.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0510e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4818155350804514 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 101.23s (max_walltime = 108.24s)  [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     : 4.98 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 331.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1594e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49059082468419674 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 102.58s (max_walltime = 108.24s)  [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     : 41.11 us   (10.7%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 331.10 us  (85.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1505e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49013229722346546 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 103.93s (max_walltime = 108.24s)  [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     : 5.02 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 377.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1186e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.48793618626178764 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 105.29s (max_walltime = 108.24s)  [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     : 5.46 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 356.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.9248e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47291287542610944 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 106.69s (max_walltime = 108.24s)  [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     : 5.08 us    (1.3%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 371.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.7756e+04 | 82944 |      1 | 1.436e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4615174868239851 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 108.12s (max_walltime = 108.24s)  [SPH][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     : 5.62 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 347.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1520e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4922364276372105 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 109.47s > 108.24s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 3):
   -> walltime = 109.47414672500001 >= 108.23867954500001
--------------------------------
[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     : 5.32 us    (53.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000003.sham                 [Shamrock Dump][rank=0]
              - took 9.86 ms, bandwidth = 1.82 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 109.47414672500001 -> 139.47414672500003

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.012628380595922058)
   -> iter = None (current = 65)
   -> walltime = 139.47414672500003 (current = 109.487516314)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 139.47s)      [SPH][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     : 5.35 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 373.22 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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 = (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    | 6.1190e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4903229585062024 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.78s (niter = 5) global walltime = 110.84s (max_walltime = 139.47s)  [SPH][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     : 5.33 us    (1.1%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.3%)
   LB compute        : 445.12 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1401e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4928426392918819 (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     : 6.39 us    (1.3%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 474.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1516e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4946849505194902 (tsim/hr)                            [sph::Model][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     : 5.91 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 380.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1328e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5058876095912038 (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     : 6.29 us    (1.8%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 332.45 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (59.7%)
Warning: High interface/patch volume ratio.                                  [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    | 6.1540e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5094230412545375 (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     : 6.28 us    (1.8%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 322.88 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1877e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5141396288379007 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 4) global walltime = 117.59s (max_walltime = 139.47s)  [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     : 5.64 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 352.04 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.1724e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5149063714413024 (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     : 6.11 us    (1.2%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.2%)
   LB compute        : 471.67 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.9745e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5004952898073148 (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     : 5.51 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 328.49 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0934e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5127200747203938 (tsim/hr)                            [sph::Model][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     : 5.91 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 319.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1277e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5180131472051679 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.07s (niter = 3) global walltime = 123.04s (max_walltime = 139.47s)  [SPH][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     : 5.31 us    (1.2%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 424.76 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123462
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.9934e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5091318977308437 (tsim/hr)                            [sph::Model][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.33 us    (1.5%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 415.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.1316e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5235374682937193 (tsim/hr)                            [sph::Model][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     : 5.52 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 374.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1768e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5302122391291878 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 2) global walltime = 127.13s (max_walltime = 139.47s)  [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     : 5.65 us    (1.2%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 435.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (76.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.2149e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5364551116743445 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 359.48 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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 = (-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    | 6.1460e+04 | 82944 |      1 | 1.350e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5335800083127847 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 129.81s (max_walltime = 139.47s)  [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     : 5.19 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 368.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 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.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.1690e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5387987144436802 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 131.16s (max_walltime = 139.47s)  [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     : 5.96 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 383.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 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.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.0611e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5326841758075272 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 132.53s (max_walltime = 139.47s)  [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     : 5.51 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 308.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 5.4639e+04 | 82944 |      1 | 1.518e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.483313615542701 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 134.05s (max_walltime = 139.47s)  [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.35 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 354.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1039e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5435549399672396 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 135.41s (max_walltime = 139.47s)  [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     : 5.16 us    (1.3%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 369.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [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.1934e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5586928447730191 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 136.75s (max_walltime = 139.47s)  [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     : 5.00 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 313.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2036e+04 | 82944 |      1 | 1.337e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.569254497019831 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 138.09s (max_walltime = 139.47s)  [SPH][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     : 5.39 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 364.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.9866e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5535592574372346 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 139.48s > 139.47s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 4):
   -> walltime = 139.475238536 >= 139.47414672500003
--------------------------------
[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     : 4.84 us    (52.3%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000004.sham                 [Shamrock Dump][rank=0]
              - took 10.83 ms, bandwidth = 1.66 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 139.475238536 -> 169.475238536

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.016963402618475613)
   -> iter = None (current = 87)
   -> walltime = 169.475238536 (current = 139.49147853)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 169.48s)      [SPH][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     : 5.85 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 336.20 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.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.1986e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5921883171460274 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.70s (niter = 5) global walltime = 140.83s (max_walltime = 169.48s)  [SPH][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     : 5.52 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 323.34 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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    | 6.1246e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5902511602953558 (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.50 us    (1.8%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 337.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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 = (-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    | 6.2028e+04 | 82944 |      1 | 1.337e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6032176000554751 (tsim/hr)                            [sph::Model][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.13 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 343.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1320e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6137115460986413 (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     : 6.36 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 315.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.0952e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6269375772457115 (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.35 us    (2.0%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 338.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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 = (-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.0719e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6245204215680112 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.41s (niter = 4) global walltime = 147.61s (max_walltime = 169.48s)  [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     : 5.23 us    (1.5%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 334.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.2124e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6473928463378064 (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.37 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 389.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.9872e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6209975479854529 (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     : 5.84 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 353.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.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    | 6.2089e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6411674408114435 (tsim/hr)                            [sph::Model][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     : 5.94 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 340.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2006e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6664436031742675 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.06s (niter = 3) global walltime = 153.01s (max_walltime = 169.48s)  [SPH][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     : 4.99 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 346.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.0006e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6438823616264354 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.4%)
   patch tree reduce : 1.14 us    (0.3%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 387.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.0913e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6527205148798819 (tsim/hr)                            [sph::Model][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.48 us    (1.8%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 341.66 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1579e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6591168452150565 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 2) global walltime = 157.11s (max_walltime = 169.48s)  [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     : 4.97 us    (1.4%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 340.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1386e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6564955266645941 (tsim/hr)                            [sph::Model][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.09 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 334.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1655e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.658973898070891 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 159.81s (max_walltime = 169.48s)  [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     : 5.64 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 308.24 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1693e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6591457172623632 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 161.15s (max_walltime = 169.48s)  [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     : 5.42 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 372.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1512e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6571215211185467 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 162.50s (max_walltime = 169.48s)  [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     : 5.12 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 356.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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    | 6.0170e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6428526143699997 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 163.88s (max_walltime = 169.48s)  [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     : 5.30 us    (1.4%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 357.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.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    | 6.1414e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6563535619836793 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 165.23s (max_walltime = 169.48s)  [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.26 us    (1.4%)
   patch tree reduce : 1.14 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 368.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.1190e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6543111224191941 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 166.59s (max_walltime = 169.48s)  [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     : 5.60 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 380.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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.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.8997e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6313292267626497 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 168.00s (max_walltime = 169.48s)  [SPH][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     : 6.03 us    (1.5%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 385.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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.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    | 6.0347e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6463783145578014 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 169.37s (max_walltime = 169.48s)  [SPH][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     : 5.31 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 319.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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    | 6.2000e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6648391526951347 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 170.71s > 169.48s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 5):
   -> walltime = 170.712075647 >= 169.475238536
--------------------------------
[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     : 5.06 us    (52.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000005.sham                 [Shamrock Dump][rank=0]
              - took 6.97 ms, bandwidth = 2.57 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 170.712075647 -> 200.712075647

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02722222222222222 (current = 0.02250364821645941)
   -> iter = None (current = 110)
   -> walltime = 200.712075647 (current = 170.724018776)

Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = 200.71s)      [SPH][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     : 5.50 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 367.86 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.1893e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6645814696447991 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.71s (niter = 5) global walltime = 172.07s (max_walltime = 200.71s)  [SPH][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     : 5.22 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 353.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.1827e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6648728580228636 (tsim/hr)                            [sph::Model][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.30 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 347.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1621e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6637803321152086 (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     : 5.86 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 371.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1773e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.666668782865609 (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     : 5.95 us    (1.5%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 390.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0163e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6506140603035381 (tsim/hr)                            [sph::Model][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.04 us    (1.5%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 374.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.1775e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.669526258758811 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 4) global walltime = 178.82s (max_walltime = 200.71s)  [SPH][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     : 5.30 us    (1.6%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 315.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0021e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.652063948679232 (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     : 5.84 us    (0.9%)
   patch tree reduce : 1.39 us    (0.2%)
   gen split merge   : 882.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 615.35 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0545e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6594186583600319 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 338.13 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.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.1598e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6725126683458494 (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.18 us    (1.7%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 345.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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 = (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.0225e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6589237437405022 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.07s (niter = 3) global walltime = 184.30s (max_walltime = 200.71s)  [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     : 5.63 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 361.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0008e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6580690583029208 (tsim/hr)                            [sph::Model][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     : 34.15 us   (9.0%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 332.41 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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    | 6.1398e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6749836370975824 (tsim/hr)                            [sph::Model][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.08 us    (1.7%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 348.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123455
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.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.1375e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6765214501314624 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.72s (niter = 2) global walltime = 188.39s (max_walltime = 200.71s)  [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.67 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 369.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6529706790123457
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.9162e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6539758485087737 (tsim/hr)                            [sph::Model][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     : 5.88 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 361.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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 = (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.1276e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6793788030398037 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 191.15s (max_walltime = 200.71s)  [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     : 5.22 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 364.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0681e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6749842036145473 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 192.52s (max_walltime = 200.71s)  [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     : 5.22 us    (1.3%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 373.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0670e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6771898642759445 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 193.89s (max_walltime = 200.71s)  [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     : 5.97 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 346.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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    | 6.1330e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6870419232455243 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 195.24s (max_walltime = 200.71s)  [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     : 5.50 us    (1.3%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 390.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1048e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.48020892221129374 (tsim/hr)                           [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 196.60s (max_walltime = 200.71s)  [SPH][rank=0]
Info: iteration since start : 130                                                     [SPH][rank=0]
Info: time since start : 196.59923249500002 (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 = 200.712075647 (current = 198.963690684)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 200.71s)      [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.18 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 354.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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 = (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    | 6.0837e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6899708795394061 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 200.33s (max_walltime = 200.71s)  [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     : 5.71 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 391.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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 = (-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    | 6.1387e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6992176887060016 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 201.68s > 200.71s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 6):
   -> walltime = 201.68078136600002 >= 200.712075647
--------------------------------
[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     : 5.43 us    (53.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000006.sham                 [Shamrock Dump][rank=0]
              - took 6.39 ms, bandwidth = 2.81 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 201.68078136600002 -> 231.68078136600002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.02774595595241948)
   -> iter = None (current = 131)
   -> walltime = 231.68078136600002 (current = 201.69177649600002)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 231.68s)      [SPH][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     : 5.85 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 337.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0493e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6921215212280418 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.86s (niter = 5) global walltime = 203.06s (max_walltime = 231.68s)  [SPH][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     : 5.01 us    (1.4%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 330.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1629e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7083812499937391 (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     : 5.71 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 336.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.2126e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7174886126435066 (tsim/hr)                            [sph::Model][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     : 5.64 us    (1.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 382.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1214e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7104194147624718 (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     : 6.81 us    (1.7%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 391.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1796e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7207871102099587 (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     : 6.39 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 354.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.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.1569e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7218459210812913 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 4) global walltime = 209.80s (max_walltime = 231.68s)  [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     : 5.32 us    (1.5%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 340.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1902e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7295867086997541 (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     : 6.25 us    (1.7%)
   patch tree reduce : 1.13 us    (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 353.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.1746e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7317019528426999 (tsim/hr)                            [sph::Model][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     : 5.90 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 343.77 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1517e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7330361613101283 (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     : 5.87 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 350.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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    | 5.9025e+04 | 82944 |      1 | 1.405e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7073381683595953 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.06s (niter = 3) global walltime = 215.24s (max_walltime = 231.68s)  [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     : 5.47 us    (1.5%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 349.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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.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.0157e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7250904070741835 (tsim/hr)                            [sph::Model][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     : 5.70 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 353.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1492e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7525767661331851 (tsim/hr)                            [sph::Model][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     : 5.90 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 387.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1318e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7585909047675932 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 2) global walltime = 219.33s (max_walltime = 231.68s)  [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     : 5.41 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 359.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0430e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7518970014161973 (tsim/hr)                            [sph::Model][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.45 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 362.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.2034e+04 | 82944 |      1 | 1.337e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7728815805081053 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 222.04s (max_walltime = 231.68s)  [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     : 5.25 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 313.77 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1813e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7712735983701688 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 223.38s (max_walltime = 231.68s)  [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     : 5.75 us    (1.0%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.2%)
   LB compute        : 534.18 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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    | 6.1666e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.77066610188837 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 224.73s (max_walltime = 231.68s)  [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     : 5.14 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 337.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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    | 6.0638e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7591425920108621 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 226.10s (max_walltime = 231.68s)  [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     : 5.35 us    (1.6%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 313.91 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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    | 5.7606e+04 | 82944 |      1 | 1.440e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7225180433363844 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 227.54s (max_walltime = 231.68s)  [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     : 4.85 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 302.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.0412e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7591199506029237 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 228.91s (max_walltime = 231.68s)  [SPH][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     : 5.41 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 334.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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    | 6.1890e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7791593928007595 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 230.25s (max_walltime = 231.68s)  [SPH][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     : 5.76 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 340.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.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    | 6.0814e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7671245106249968 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 231.62s (max_walltime = 231.68s)  [SPH][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     : 5.87 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 351.64 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1970e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7833196324486786 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 232.96s > 231.68s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 7):
   -> walltime = 232.95745777300002 >= 231.68078136600002
--------------------------------
[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.36 us    (57.2%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000007.sham                 [Shamrock Dump][rank=0]
              - took 6.59 ms, bandwidth = 2.72 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 232.95745777300002 -> 262.957457773

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.034174701481259936)
   -> iter = None (current = 154)
   -> walltime = 262.957457773 (current = 232.96912355400002)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 262.96s)      [SPH][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     : 5.30 us    (1.4%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 347.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1796e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7828106473064553 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.72s (niter = 5) global walltime = 234.31s (max_walltime = 262.96s)  [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     : 5.41 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 307.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1762e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.784150287832863 (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     : 5.75 us    (1.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 314.76 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.2066e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7898723083738125 (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     : 6.00 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 365.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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    | 6.2161e+04 | 82944 |      1 | 1.334e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7930156360942177 (tsim/hr)                            [sph::Model][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     : 5.71 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 324.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.2119e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7944865103145985 (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     : 6.38 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 382.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 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.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.2370e+04 | 82944 |      1 | 1.330e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7997839728700283 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.35s (niter = 4) global walltime = 241.00s (max_walltime = 262.96s)  [SPH][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     : 5.25 us    (1.4%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 355.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.2071e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7981027606215162 (tsim/hr)                            [sph::Model][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     : 5.62 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 319.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.2099e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8006970333773552 (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     : 6.40 us    (1.9%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 318.26 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0764e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7857391648273568 (tsim/hr)                            [sph::Model][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     : 5.88 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 348.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.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.2065e+04 | 82944 |      1 | 1.336e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.804929807633738 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.02s (niter = 3) global walltime = 246.38s (max_walltime = 262.96s)  [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     : 35.48 us   (9.0%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 343.85 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1849e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8045713494887945 (tsim/hr)                            [sph::Model][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.12 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 358.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1819e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8066821988940773 (tsim/hr)                            [sph::Model][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.85 us    (1.9%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 345.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1765e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8085518023016482 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.68s (niter = 2) global walltime = 250.40s (max_walltime = 262.96s)  [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     : 5.31 us    (1.6%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 316.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1622e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8093348193629154 (tsim/hr)                            [sph::Model][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.84 us    (1.9%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 348.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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    | 6.1740e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8136027366086364 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.34s (niter = 1) global walltime = 253.10s (max_walltime = 262.96s)  [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     : 5.60 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 348.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.1354e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8112886922258222 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.34s (niter = 1) global walltime = 254.45s (max_walltime = 262.96s)  [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     : 5.10 us    (1.4%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 354.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.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    | 6.1900e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.821388260010237 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.34s (niter = 1) global walltime = 255.79s (max_walltime = 262.96s)  [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.25 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 336.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.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    | 6.1717e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8218999473293241 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.34s (niter = 1) global walltime = 257.14s (max_walltime = 262.96s)  [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     : 5.20 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 326.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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    | 6.1865e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8268980564296474 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 258.48s (max_walltime = 262.96s)  [SPH][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     : 5.27 us    (1.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 367.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.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    | 6.1235e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8215428328945454 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 259.83s (max_walltime = 262.96s)  [SPH][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     : 5.29 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 348.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1984e+04 | 82944 |      1 | 1.338e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8347665587015501 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 261.17s (max_walltime = 262.96s)  [SPH][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     : 5.19 us    (1.4%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 362.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.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.1870e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8364714798632406 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 262.52s (max_walltime = 262.96s)  [SPH][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     : 5.73 us    (1.5%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 372.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1635e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8366026376053244 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 263.86s > 262.96s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 8):
   -> walltime = 263.862294384 >= 262.957457773
--------------------------------
[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     : 5.77 us    (56.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000008.sham                 [Shamrock Dump][rank=0]
              - took 9.78 ms, bandwidth = 1.83 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 263.862294384 -> 293.862294384

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.04110343131793978)
   -> iter = None (current = 177)
   -> walltime = 293.862294384 (current = 263.87680359)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 293.86s)      [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     : 5.60 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 357.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.0148e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.819722768007208 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.90s (niter = 5) global walltime = 265.26s (max_walltime = 293.86s)  [SPH][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     : 5.46 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 332.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.1127e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8364910603235766 (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     : 5.54 us    (1.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 370.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0196e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8272075996175975 (tsim/hr)                            [sph::Model][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     : 5.74 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 374.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1940e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8537722234631724 (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     : 5.58 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 364.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1836e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8404726714457447 (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     : 6.20 us    (1.8%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 326.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.1329e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8379514200016095 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.44s (niter = 4) global walltime = 272.03s (max_walltime = 293.86s)  [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     : 5.41 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 347.18 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1856e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8497934855338662 (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     : 5.40 us    (1.7%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 307.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.0582e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8370665022503894 (tsim/hr)                            [sph::Model][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.29 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 344.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1077e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8489438301215978 (tsim/hr)                            [sph::Model][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.79 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 345.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.1743e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8599292941743716 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.07s (niter = 3) global walltime = 277.45s (max_walltime = 293.86s)  [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     : 5.57 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 331.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 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.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    | 6.1606e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8596587633485194 (tsim/hr)                            [sph::Model][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.26 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 319.96 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1928e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8658588622732948 (tsim/hr)                            [sph::Model][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     : 5.41 us    (1.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 362.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1832e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8507551185070993 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 2) global walltime = 281.48s (max_walltime = 293.86s)  [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     : 5.23 us    (1.4%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 350.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.0192e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8326266380261764 (tsim/hr)                            [sph::Model][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.52 us    (1.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 366.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [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    | 6.1304e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8527498063305504 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 284.21s (max_walltime = 293.86s)  [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     : 5.49 us    (1.4%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 372.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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 = (-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.0925e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.852419784488316 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 285.57s (max_walltime = 293.86s)  [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     : 5.48 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 317.70 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.8898e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8290592822843141 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 286.98s (max_walltime = 293.86s)  [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     : 5.43 us    (1.3%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 392.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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.1677e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8734764105573076 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 288.33s (max_walltime = 293.86s)  [SPH][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     : 5.88 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 326.79 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.1231e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8691889175793694 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 289.68s (max_walltime = 293.86s)  [SPH][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     : 5.47 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 332.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.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.1535e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8755934492566554 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 291.03s (max_walltime = 293.86s)  [SPH][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     : 5.24 us    (1.4%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 347.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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    | 6.1532e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.877658034930956 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 292.38s (max_walltime = 293.86s)  [SPH][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     : 5.16 us    (1.5%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 316.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.1625e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8810267761351505 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 293.73s (max_walltime = 293.86s)  [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     : 5.25 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 337.46 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1105e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.875669687799359 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 295.09s > 293.86s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 9):
   -> walltime = 295.08905089900003 >= 293.862294384
--------------------------------
[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     : 5.62 us    (52.5%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000009.sham                 [Shamrock Dump][rank=0]
              - took 9.70 ms, bandwidth = 1.85 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 295.08905089900003 -> 325.08905089900003

[Simulation] Evolve until next trigger(s) :
   -> t = 0.05444444444444444 (current = 0.04848680881510442)
   -> iter = None (current = 200)
   -> walltime = 325.08905089900003 (current = 295.103413763)

Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = 325.09s)      [SPH][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     : 5.98 us    (1.5%)
   patch tree reduce : 24.84 us   (6.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 343.50 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0324e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8665805236585565 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.88s (niter = 5) global walltime = 296.48s (max_walltime = 325.09s)  [SPH][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     : 5.36 us    (1.6%)
   patch tree reduce : 1.18 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 316.84 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.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.0602e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8727298613010454 (tsim/hr)                            [sph::Model][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.21 us    (1.6%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 370.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0362e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8705836087518792 (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     : 6.10 us    (1.8%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 315.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1344e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.885837855243935 (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     : 6.10 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 346.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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.1715e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8923651197383837 (tsim/hr)                            [sph::Model][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.64 us    (1.0%)
   patch tree reduce : 330.28 us  (47.3%)
   gen split merge   : 1.37 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.2%)
   LB compute        : 346.50 us  (49.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 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.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    | 6.1355e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8883727953878995 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.45s (niter = 4) global walltime = 303.28s (max_walltime = 325.09s)  [SPH][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     : 5.78 us    (1.4%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 389.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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.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.1271e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8884240742539595 (tsim/hr)                            [sph::Model][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     : 5.75 us    (1.2%)
   patch tree reduce : 1.51 us    (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.2%)
   LB compute        : 443.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.1176e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8883643378822332 (tsim/hr)                            [sph::Model][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     : 5.71 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 372.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.9947e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8718598958448239 (tsim/hr)                            [sph::Model][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     : 5.85 us    (1.4%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 390.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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    | 5.9444e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8659354783417702 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.73s (niter = 2) global walltime = 308.77s (max_walltime = 325.09s)  [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     : 5.83 us    (1.5%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 363.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1773e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9013668630321096 (tsim/hr)                            [sph::Model][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.46 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 358.29 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.1656e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9012023619491065 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.73s (niter = 2) global walltime = 311.46s (max_walltime = 325.09s)  [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     : 5.17 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 377.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1871e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9059496502837106 (tsim/hr)                            [sph::Model][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.44 us    (1.9%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 316.16 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 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.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    | 6.1632e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9041017775518267 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.72s (niter = 2) global walltime = 314.15s (max_walltime = 325.09s)  [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     : 5.58 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.92 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.57 us   (94.5%)
Warning: High interface/patch volume ratio.                                  [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    | 6.1919e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9100010744447717 (tsim/hr)                            [sph::Model][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     : 5.95 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 316.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1528e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.905998601193967 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 316.84s (max_walltime = 325.09s)  [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     : 5.26 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 337.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1727e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9107257907812546 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 318.18s (max_walltime = 325.09s)  [SPH][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     : 4.78 us    (1.3%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 361.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.2263e+04 | 82944 |      1 | 1.332e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.696205301790551 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 319.52s (max_walltime = 325.09s)  [SPH][rank=0]
Info: iteration since start : 219                                                     [SPH][rank=0]
Info: time since start : 319.517281216 (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 = 325.08905089900003 (current = 321.892916721)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 325.09s)      [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     : 5.72 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 347.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851853
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.1484e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.910383399585914 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 323.24s (max_walltime = 325.09s)  [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     : 5.70 us    (1.5%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 372.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1410e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9111715394077184 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 324.60s (max_walltime = 325.09s)  [SPH][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     : 5.68 us    (1.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 396.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1607e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.91603076580078 (tsim/hr)                              [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 325.94s > 325.09s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 10):
   -> walltime = 325.943009339 >= 325.08905089900003
--------------------------------
[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     : 5.66 us    (56.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000010.sham                 [Shamrock Dump][rank=0]
              - took 9.27 ms, bandwidth = 1.93 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 325.943009339 -> 355.943009339

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.055470031330194895)
   -> iter = None (current = 221)
   -> walltime = 355.943009339 (current = 325.956939713)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 355.94s)      [SPH][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     : 5.31 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 316.42 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.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.2205e+04 | 82944 |      1 | 1.333e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9269128612458674 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.67s (niter = 5) global walltime = 327.29s (max_walltime = 355.94s)  [SPH][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     : 5.14 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 355.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.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.2035e+04 | 82944 |      1 | 1.337e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9249460900457773 (tsim/hr)                            [sph::Model][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     : 5.81 us    (1.7%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 322.96 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.2121e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.926882797438867 (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     : 6.46 us    (1.8%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 340.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.2130e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9277468607279831 (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     : 5.46 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 346.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.1813e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9238162382957319 (tsim/hr)                            [sph::Model][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     : 5.85 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 324.94 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 22.90 us   (6.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.0365e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9030290939763309 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.38s (niter = 4) global walltime = 334.02s (max_walltime = 355.94s)  [SPH][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     : 4.96 us    (1.2%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 395.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6422164351851851
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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.0792e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9103483807743947 (tsim/hr)                            [sph::Model][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     : 7.17 us    (1.9%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 354.30 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 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.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    | 6.1629e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.923882268377261 (tsim/hr)                             [sph::Model][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.02 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0590e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9093422864665694 (tsim/hr)                            [sph::Model][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.40 us    (1.9%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 324.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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    | 6.1304e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9211813959909154 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.05s (niter = 3) global walltime = 339.46s (max_walltime = 355.94s)  [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     : 5.13 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 340.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.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.1896e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9312604998377529 (tsim/hr)                            [sph::Model][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     : 5.52 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 391.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 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.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.2058e+04 | 82944 |      1 | 1.337e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9349328902251759 (tsim/hr)                            [sph::Model][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     : 5.58 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 343.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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.1866e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9332523840596879 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.70s (niter = 2) global walltime = 343.48s (max_walltime = 355.94s)  [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     : 4.84 us    (1.3%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 367.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.0961e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9176244389854552 (tsim/hr)                            [sph::Model][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     : 5.58 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 358.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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    | 6.1967e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9308871794878416 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 346.18s (max_walltime = 355.94s)  [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     : 5.32 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 354.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.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.8241e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8825309915574863 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 347.60s (max_walltime = 355.94s)  [SPH][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     : 5.53 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 322.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1550e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.912001811437908 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 348.95s (max_walltime = 355.94s)  [SPH][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     : 6.25 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 344.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1504e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9158412816410282 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 350.30s (max_walltime = 355.94s)  [SPH][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     : 5.59 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 416.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1731e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9239601873409967 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 351.65s (max_walltime = 355.94s)  [SPH][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     : 5.23 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 348.59 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.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.1578e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9266064906812735 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 353.00s (max_walltime = 355.94s)  [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     : 5.58 us    (1.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 373.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.9460e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8997078835974763 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 354.39s (max_walltime = 355.94s)  [SPH][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     : 5.92 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 364.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.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    | 6.1836e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9410383611356058 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 355.74s (max_walltime = 355.94s)  [SPH][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     : 5.43 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 325.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.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    | 6.1740e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9394923950675302 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 357.08s > 355.94s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 11):
   -> walltime = 357.07975102300003 >= 355.943009339
--------------------------------
[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     : 4.94 us    (49.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000011.sham                 [Shamrock Dump][rank=0]
              - took 9.13 ms, bandwidth = 1.96 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 357.07975102300003 -> 387.07975102300003

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.06342534793795183)
   -> iter = None (current = 244)
   -> walltime = 387.07975102300003 (current = 357.09348553800004)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 387.08s)      [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     : 5.26 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.1834e+04 | 82944 |      1 | 1.341e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9197915307703166 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.71s (niter = 5) global walltime = 358.44s (max_walltime = 387.08s)  [SPH][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     : 5.63 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 409.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1770e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9233545937612986 (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.14 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 374.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1664e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9264577227433228 (tsim/hr)                            [sph::Model][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     : 5.70 us    (1.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 376.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.1763e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9328680710383124 (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     : 5.87 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 346.14 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1877e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9397242814452865 (tsim/hr)                            [sph::Model][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     : 5.95 us    (1.5%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 379.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0226e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9198796114397185 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 4) global walltime = 365.19s (max_walltime = 387.08s)  [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     : 5.80 us    (1.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 405.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1506e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9449618759597894 (tsim/hr)                            [sph::Model][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.33 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 382.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 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.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    | 6.1013e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9296405751993156 (tsim/hr)                            [sph::Model][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     : 5.90 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 391.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1729e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9456689345578586 (tsim/hr)                            [sph::Model][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.12 us    (1.5%)
   patch tree reduce : 1.85 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 400.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1594e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9438270552642709 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.05s (niter = 3) global walltime = 370.60s (max_walltime = 387.08s)  [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     : 5.27 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 321.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.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.0866e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9310428113772908 (tsim/hr)                            [sph::Model][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     : 5.72 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 334.24 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.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    | 6.0690e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9299997739771344 (tsim/hr)                            [sph::Model][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.25 us    (1.8%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.38 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1477e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9502444521715367 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 2) global walltime = 374.68s (max_walltime = 387.08s)  [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     : 5.22 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 317.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.1697e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9547426331370014 (tsim/hr)                            [sph::Model][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     : 5.71 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 345.92 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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    | 6.1716e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9439983313145403 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 377.37s (max_walltime = 387.08s)  [SPH][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     : 5.29 us    (1.5%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 332.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.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    | 6.1797e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9503053888975733 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 378.71s (max_walltime = 387.08s)  [SPH][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     : 5.07 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 314.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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    | 6.1642e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9520127184122794 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 380.06s (max_walltime = 387.08s)  [SPH][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     : 4.89 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 349.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1712e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9513677214765559 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 1) global walltime = 381.41s (max_walltime = 387.08s)  [SPH][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     : 5.26 us    (1.2%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 402.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0752e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9349985416063646 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 382.77s (max_walltime = 387.08s)  [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     : 5.08 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 347.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1409e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9436454689640911 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 384.12s (max_walltime = 387.08s)  [SPH][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     : 5.58 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 364.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1812e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9460301633615914 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 385.47s (max_walltime = 387.08s)  [SPH][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     : 5.37 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 324.51 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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.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    | 6.2129e+04 | 82944 |      1 | 1.335e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9556647584975697 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 386.80s (max_walltime = 387.08s)  [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     : 5.43 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 313.06 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.64185474537037
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.1947e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9578396088218908 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 388.14s > 387.08s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 12):
   -> walltime = 388.143098032 >= 387.07975102300003
--------------------------------
[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     : 4.93 us    (51.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000012.sham                 [Shamrock Dump][rank=0]
              - took 6.37 ms, bandwidth = 2.81 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 388.143098032 -> 418.143098032

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.07152732167612387)
   -> iter = None (current = 267)
   -> walltime = 418.143098032 (current = 388.154092322)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 418.14s)      [SPH][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     : 5.13 us    (0.8%)
   patch tree reduce : 1.37 us    (0.2%)
   gen split merge   : 832.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.2%)
   LB compute        : 614.39 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.1594e+04 | 82944 |      1 | 1.347e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9570627223142204 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.74s (niter = 5) global walltime = 389.50s (max_walltime = 418.14s)  [SPH][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     : 5.60 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 308.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1732e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9613062535042896 (tsim/hr)                            [sph::Model][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     : 5.63 us    (1.7%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 314.63 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.1390e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9565856764502555 (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.05 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 329.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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    | 6.0384e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9237161781014354 (tsim/hr)                            [sph::Model][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.54 us    (1.9%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 317.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.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.0947e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.936866493485288 (tsim/hr)                             [sph::Model][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.11 us    (1.8%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 327.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 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.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.1455e+04 | 82944 |      1 | 1.350e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9494640927073765 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.42s (niter = 4) global walltime = 396.29s (max_walltime = 418.14s)  [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     : 5.44 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 353.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 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.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    | 6.1818e+04 | 82944 |      1 | 1.342e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9600796714437372 (tsim/hr)                            [sph::Model][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     : 5.78 us    (1.4%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 382.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.0269e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.938832293017041 (tsim/hr)                             [sph::Model][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     : 5.76 us    (1.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 407.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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    | 6.1684e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9630270076407009 (tsim/hr)                            [sph::Model][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.40 us    (1.7%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 363.27 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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.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.1887e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9449094860615274 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.06s (niter = 3) global walltime = 401.69s (max_walltime = 418.14s)  [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     : 5.39 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 365.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.0440e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9272068193528564 (tsim/hr)                            [sph::Model][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.86 us    (1.8%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 360.40 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.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    | 6.0746e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9365147250545979 (tsim/hr)                            [sph::Model][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     : 7.84 us    (2.1%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 344.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1669e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9556387086819518 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 2) global walltime = 405.78s (max_walltime = 418.14s)  [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     : 4.96 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 313.62 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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.9485e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9267410650666102 (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.01 us    (1.8%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 380.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 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.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    | 6.1702e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9609778354711118 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 408.52s (max_walltime = 418.14s)  [SPH][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     : 5.28 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 318.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1924e+04 | 82944 |      1 | 1.339e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9413779915572312 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 409.86s (max_walltime = 418.14s)  [SPH][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     : 5.46 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 344.84 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1728e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9426207751234167 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 411.21s (max_walltime = 418.14s)  [SPH][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     : 5.11 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 347.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1453e+04 | 82944 |      1 | 1.350e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9428344055361765 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 412.56s (max_walltime = 418.14s)  [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     : 5.55 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 312.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1203e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9435912088992258 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 413.92s (max_walltime = 418.14s)  [SPH][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     : 5.41 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 317.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 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.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.0435e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9364880144945789 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 415.29s (max_walltime = 418.14s)  [SPH][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     : 5.50 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 314.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1716e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9335726989596718 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 416.63s (max_walltime = 418.14s)  [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     : 5.44 us    (1.6%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 325.21 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1699e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9374271438273416 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 417.98s (max_walltime = 418.14s)  [SPH][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     : 5.40 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 380.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.1447e+04 | 82944 |      1 | 1.350e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9378969040971413 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 419.33s > 418.14s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 13):
   -> walltime = 419.33056925600005 >= 418.143098032
--------------------------------
[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     : 5.46 us    (52.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000013.sham                 [Shamrock Dump][rank=0]
              - took 9.96 ms, bandwidth = 1.80 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 419.33056925600005 -> 449.33056925600005

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08166666666666667 (current = 0.07969547711503996)
   -> iter = None (current = 290)
   -> walltime = 449.33056925600005 (current = 419.345322388)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 449.33s)      [SPH][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     : 5.32 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 375.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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    | 6.1048e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9362991952730447 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.80s (niter = 5) global walltime = 420.71s (max_walltime = 449.33s)  [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     : 5.65 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 316.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1648e+04 | 82944 |      1 | 1.345e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9502595477333149 (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     : 5.68 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 372.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6418547453703702
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.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.9746e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9257455110136007 (tsim/hr)                            [sph::Model][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     : 5.96 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 328.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9423e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9257451224580465 (tsim/hr)                            [sph::Model][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.18 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 351.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.0912e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9234889852412079 (tsim/hr)                            [sph::Model][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.30 us    (1.5%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.3%)
   LB compute        : 408.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 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.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.1782e+04 | 82944 |      1 | 1.343e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5294123201039835 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.10s (niter = 3) global walltime = 427.55s (max_walltime = 449.33s)  [SPH][rank=0]
Info: iteration since start : 297                                                     [SPH][rank=0]
Info: time since start : 427.545189605 (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 = 449.33056925600005 (current = 429.973333221)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 449.33s)      [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     : 5.76 us    (1.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 403.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 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.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.7205e+04 | 82944 |      1 | 1.450e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8734392516118918 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.36s (niter = 3) global walltime = 431.43s (max_walltime = 449.33s)  [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.55 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 383.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1110e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9374462510843375 (tsim/hr)                            [sph::Model][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     : 5.95 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 345.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1278e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9446951508927711 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.4%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 403.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1289e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9497657695134621 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.76s (niter = 2) global walltime = 435.49s (max_walltime = 449.33s)  [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     : 5.33 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 328.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.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    | 6.1518e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9584386815199296 (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     : 5.54 us    (1.4%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 384.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0360e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9233247656403011 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.75s (niter = 2) global walltime = 438.22s (max_walltime = 449.33s)  [SPH][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     : 5.52 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 330.24 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.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    | 6.1061e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.938445348538246 (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     : 5.57 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 312.28 us  (84.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 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.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    | 6.1644e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9520569162961993 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 440.92s (max_walltime = 449.33s)  [SPH][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     : 5.67 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 306.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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    | 6.1879e+04 | 82944 |      1 | 1.340e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9605911807056134 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 442.27s (max_walltime = 449.33s)  [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     : 5.05 us    (1.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 350.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0567e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9452403967768729 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 443.64s (max_walltime = 449.33s)  [SPH][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     : 5.21 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.93 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.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.1198e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9603878846815072 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 444.99s (max_walltime = 449.33s)  [SPH][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     : 5.94 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 353.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1604e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9393769909492676 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 446.34s (max_walltime = 449.33s)  [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     : 5.22 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 361.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1523e+04 | 82944 |      1 | 1.348e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9424041616430344 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 447.69s (max_walltime = 449.33s)  [SPH][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     : 5.52 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.3%)
   LB compute        : 404.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1635e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9485987348443898 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 449.04s (max_walltime = 449.33s)  [SPH][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     : 5.96 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 418.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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    | 6.0082e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9292886529999926 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 450.42s > 449.33s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 14):
   -> walltime = 450.41907563 >= 449.33056925600005
--------------------------------
[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     : 4.98 us    (51.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000014.sham                 [Shamrock Dump][rank=0]
              - took 12.13 ms, bandwidth = 1.48 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 450.41907563 -> 480.41907563

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.08699950505671832)
   -> iter = None (current = 311)
   -> walltime = 480.41907563 (current = 450.435807635)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 480.42s)      [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.40 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 344.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1638e+04 | 82944 |      1 | 1.346e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9582934897949513 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.73s (niter = 5) global walltime = 451.78s (max_walltime = 480.42s)  [SPH][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     : 5.14 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 367.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0767e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9498530062634373 (tsim/hr)                            [sph::Model][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.35 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 323.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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    | 6.1261e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.934154440228078 (tsim/hr)                             [sph::Model][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     : 5.81 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 317.03 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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    | 6.1170e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9369299700124339 (tsim/hr)                            [sph::Model][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     : 5.49 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 337.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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    | 6.1334e+04 | 82944 |      1 | 1.352e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9438389459202361 (tsim/hr)                            [sph::Model][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.36 us    (1.6%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 379.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1435e+04 | 82944 |      1 | 1.350e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9500158811667219 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.42s (niter = 4) global walltime = 458.57s (max_walltime = 480.42s)  [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     : 5.07 us    (1.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 360.61 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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    | 6.1417e+04 | 82944 |      1 | 1.350e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9545810727697855 (tsim/hr)                            [sph::Model][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     : 7.42 us    (1.9%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 372.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 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.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    | 6.1192e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9561225724746492 (tsim/hr)                            [sph::Model][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.28 us    (1.5%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.4%)
   LB compute        : 390.55 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 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.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    | 6.1387e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9329983263088412 (tsim/hr)                            [sph::Model][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.96 us    (2.0%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 324.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1228e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9345760578185655 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.06s (niter = 3) global walltime = 463.98s (max_walltime = 480.42s)  [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.94 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 318.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.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    | 6.1508e+04 | 82944 |      1 | 1.349e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9430875082763434 (tsim/hr)                            [sph::Model][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     : 5.76 us    (1.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 395.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1729e+04 | 82944 |      1 | 1.344e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.950953562134553 (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     : 5.41 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 316.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.8485e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9054354684263645 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.72s (niter = 2) global walltime = 468.10s (max_walltime = 480.42s)  [SPH][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     : 5.65 us    (1.4%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 386.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1320e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9542158026735623 (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     : 6.27 us    (1.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 330.54 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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    | 6.0412e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9186647226383597 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 470.82s (max_walltime = 480.42s)  [SPH][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     : 5.43 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 328.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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    | 6.0288e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9207692817789341 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 472.20s (max_walltime = 480.42s)  [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     : 5.03 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 367.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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    | 6.0544e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9289023543640019 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 473.57s (max_walltime = 480.42s)  [SPH][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     : 5.75 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 361.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 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    | 6.0707e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9358555317479197 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.36s (niter = 1) global walltime = 474.94s (max_walltime = 480.42s)  [SPH][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     : 5.24 us    (1.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 384.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1054e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9459201090073306 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 476.30s (max_walltime = 480.42s)  [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     : 5.86 us    (1.7%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 318.03 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.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    | 6.1210e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9532744910365216 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 477.66s (max_walltime = 480.42s)  [SPH][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     : 5.93 us    (1.4%)
   patch tree reduce : 1.46 us    (0.3%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 398.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.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.9696e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9347566196116545 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 479.05s (max_walltime = 480.42s)  [SPH][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     : 5.20 us    (1.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 343.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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    | 6.1204e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9307214056896101 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 480.40s (max_walltime = 480.42s)  [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     : 5.10 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 377.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1242e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9353806999869244 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 481.76s > 480.42s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 15):
   -> walltime = 481.75904872300003 >= 480.41907563
--------------------------------
[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     : 5.11 us    (51.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000015.sham                 [Shamrock Dump][rank=0]
              - took 12.27 ms, bandwidth = 1.46 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 481.75904872300003 -> 511.75904872300003

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.09516606008368325)
   -> iter = None (current = 334)
   -> walltime = 511.75904872300003 (current = 481.776056062)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 511.76s)      [SPH][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     : 5.58 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.3%)
   LB compute        : 407.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 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.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    | 6.1086e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9372942001028753 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.80s (niter = 5) global walltime = 483.14s (max_walltime = 511.76s)  [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     : 5.60 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 362.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9372e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9153803487928033 (tsim/hr)                            [sph::Model][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     : 6.54 us    (1.7%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 371.30 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 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.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.9251e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9180991578091001 (tsim/hr)                            [sph::Model][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     : 5.36 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 316.69 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.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    | 6.1311e+04 | 82944 |      1 | 1.353e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9291482285312385 (tsim/hr)                            [sph::Model][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     : 5.60 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 334.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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    | 6.1251e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9321895630969089 (tsim/hr)                            [sph::Model][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     : 5.81 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 370.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1273e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9366847913149633 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.11s (niter = 3) global walltime = 490.00s (max_walltime = 511.76s)  [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     : 5.02 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 342.05 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1388e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9428528335166333 (tsim/hr)                            [sph::Model][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     : 5.91 us    (1.7%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 329.71 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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    | 6.0689e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9366900585104374 (tsim/hr)                            [sph::Model][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     : 5.95 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 350.60 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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    | 6.0743e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9423368243132464 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.10s (niter = 3) global walltime = 494.09s (max_walltime = 511.76s)  [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.02 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 315.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.1113e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9531443500263093 (tsim/hr)                            [sph::Model][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.29 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 329.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.1384e+04 | 82944 |      1 | 1.351e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9312882057476927 (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     : 6.83 us    (2.0%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 320.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.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    | 6.1065e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9304715417052332 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.73s (niter = 2) global walltime = 498.16s (max_walltime = 511.76s)  [SPH][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     : 5.96 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 355.93 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8792e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8999199652892435 (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     : 5.71 us    (1.4%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 356.50 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.0732e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9340678170490266 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 500.94s (max_walltime = 511.76s)  [SPH][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     : 5.57 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 364.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.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.9305e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9166834321768965 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 502.34s (max_walltime = 511.76s)  [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     : 5.31 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 326.79 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0862e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9456800285701208 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 503.70s (max_walltime = 511.76s)  [SPH][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     : 5.57 us    (1.7%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 319.24 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9716e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9084375657552205 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 505.09s (max_walltime = 511.76s)  [SPH][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     : 4.98 us    (1.4%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 336.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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    | 6.0925e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9309301877690142 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 506.45s (max_walltime = 511.76s)  [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     : 5.38 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 313.78 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.1104e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9380000022894088 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 507.81s (max_walltime = 511.76s)  [SPH][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     : 4.94 us    (1.4%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 333.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0491e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9331157162877805 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 509.18s (max_walltime = 511.76s)  [SPH][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     : 4.96 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 329.80 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 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.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    | 6.0156e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9326659987864998 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 510.56s (max_walltime = 511.76s)  [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     : 5.67 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 307.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1250e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9546664580369516 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 511.92s > 511.76s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 16):
   -> walltime = 511.919531295 >= 511.75904872300003
--------------------------------
[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     : 5.86 us    (55.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000016.sham                 [Shamrock Dump][rank=0]
              - took 6.23 ms, bandwidth = 2.88 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 511.919531295 -> 541.9195312950001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.10888888888888888 (current = 0.10295983618150557)
   -> iter = None (current = 356)
   -> walltime = 541.9195312950001 (current = 511.93132476700004)

Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = 541.92s)      [SPH][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     : 5.58 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 349.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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    | 6.0406e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9152903773675238 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.87s (niter = 5) global walltime = 513.31s (max_walltime = 541.92s)  [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     : 5.47 us    (1.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 372.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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    | 6.0608e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9222625682254386 (tsim/hr)                            [sph::Model][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     : 5.65 us    (1.4%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 384.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1082e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9336454232573965 (tsim/hr)                            [sph::Model][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     : 6.13 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.04 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 406.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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    | 6.1264e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9408531011544455 (tsim/hr)                            [sph::Model][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.26 us    (1.5%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 400.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1139e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9435680148907648 (tsim/hr)                            [sph::Model][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.03 us    (1.5%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 376.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.1054e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9471050736247383 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.45s (niter = 4) global walltime = 520.11s (max_walltime = 541.92s)  [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     : 5.65 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 319.56 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9718e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9054450248701053 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 317.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.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    | 6.0487e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9210245992179606 (tsim/hr)                            [sph::Model][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     : 5.92 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 349.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0858e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9308267405404906 (tsim/hr)                            [sph::Model][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.10 us    (1.6%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 368.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.1134e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9394649742653198 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.73s (niter = 2) global walltime = 525.59s (max_walltime = 541.92s)  [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     : 5.70 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 362.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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.8884e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.909343391098218 (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     : 5.75 us    (1.4%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 1.04 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 406.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0680e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9419215976500177 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.74s (niter = 2) global walltime = 528.37s (max_walltime = 541.92s)  [SPH][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     : 6.26 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 410.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 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.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    | 6.1137e+04 | 82944 |      1 | 1.357e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9541227138617104 (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.40 us    (1.6%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 392.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1239e+04 | 82944 |      1 | 1.354e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9291635695026537 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 531.08s (max_walltime = 541.92s)  [SPH][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     : 5.65 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 350.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.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    | 6.0781e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9262216254935176 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 532.45s (max_walltime = 541.92s)  [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     : 5.78 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 320.99 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.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.9802e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9154511931681059 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 533.84s (max_walltime = 541.92s)  [SPH][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     : 5.38 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 326.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.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    | 6.1150e+04 | 82944 |      1 | 1.356e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7360972224637321 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 535.19s (max_walltime = 541.92s)  [SPH][rank=0]
Info: iteration since start : 374                                                     [SPH][rank=0]
Info: time since start : 535.194561788 (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 = 541.9195312950001 (current = 537.585741212)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 541.92s)      [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.28 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 550.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 342.91 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.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    | 6.0298e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9311145092749605 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 538.96s (max_walltime = 541.92s)  [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     : 5.42 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 322.52 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9521e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9238571229994387 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 540.36s (max_walltime = 541.92s)  [SPH][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     : 5.10 us    (1.3%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 367.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.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.9705e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9060055210426721 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 541.75s (max_walltime = 541.92s)  [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     : 4.99 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 309.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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    | 6.1064e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9306733323889428 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 543.11s > 541.92s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 17):
   -> walltime = 543.107367292 >= 541.9195312950001
--------------------------------
[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     : 5.40 us    (55.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000017.sham                 [Shamrock Dump][rank=0]
              - took 10.76 ms, bandwidth = 1.67 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 543.107367292 -> 573.107367292

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.11030305937202763)
   -> iter = None (current = 377)
   -> walltime = 573.107367292 (current = 543.1229989540001)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 573.11s)      [SPH][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     : 5.73 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 328.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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    | 6.0526e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.926685673787484 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 6.86s (niter = 5) global walltime = 544.49s (max_walltime = 573.11s)  [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     : 5.92 us    (1.7%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 331.89 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.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.7559e+04 | 82944 |      1 | 1.441e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8854929854562674 (tsim/hr)                            [sph::Model][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     : 5.65 us    (0.9%)
   patch tree reduce : 1.31 us    (0.2%)
   gen split merge   : 1.16 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 595.01 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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.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.8996e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9121705613247062 (tsim/hr)                            [sph::Model][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.08 us    (1.8%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 311.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0910e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9467140091860679 (tsim/hr)                            [sph::Model][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.15 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 311.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0853e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9510071535691953 (tsim/hr)                            [sph::Model][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.77 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 327.42 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0912e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9247063967309109 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.16s (niter = 3) global walltime = 551.43s (max_walltime = 573.11s)  [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     : 5.48 us    (1.6%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 322.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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.9947e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9140824156991896 (tsim/hr)                            [sph::Model][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.47 us    (1.9%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 326.12 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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    | 6.0469e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9263436679241995 (tsim/hr)                            [sph::Model][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     : 6.68 us    (1.6%)
   patch tree reduce : 1.49 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 409.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 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.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.9854e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9213940527742844 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 555.58s (max_walltime = 573.11s)  [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     : 5.30 us    (1.3%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 386.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0350e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9337737953519809 (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     : 6.12 us    (1.6%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 353.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0702e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9187143732138798 (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     : 6.65 us    (1.7%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 375.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 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.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.9805e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.908984813329812 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.76s (niter = 2) global walltime = 559.71s (max_walltime = 573.11s)  [SPH][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     : 5.36 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 371.98 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9206e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9039114137035815 (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     : 5.97 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 346.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.9346e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9103220508219542 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 562.51s (max_walltime = 573.11s)  [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     : 5.63 us    (1.4%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 395.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0799e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9372034531543457 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 563.88s (max_walltime = 573.11s)  [SPH][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     : 5.55 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 335.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.8570e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.907501743789726 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 565.29s (max_walltime = 573.11s)  [SPH][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     : 5.03 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 370.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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    | 6.0792e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9469908403754361 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 566.66s (max_walltime = 573.11s)  [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     : 5.51 us    (1.2%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.3%)
   LB compute        : 431.82 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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    | 6.0094e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9102906757595502 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 568.04s (max_walltime = 573.11s)  [SPH][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     : 5.27 us    (1.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 373.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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.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    | 6.0750e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9242284247938026 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 569.41s (max_walltime = 573.11s)  [SPH][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     : 5.30 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 329.22 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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    | 6.0368e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9226216337462976 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 570.78s (max_walltime = 573.11s)  [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     : 5.45 us    (0.8%)
   patch tree reduce : 1.42 us    (0.2%)
   gen split merge   : 16.95 us   (2.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.2%)
   LB compute        : 633.12 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0561e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9300153607394928 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 572.15s (max_walltime = 573.11s)  [SPH][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     : 5.31 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 294.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.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    | 6.0019e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9263254419027862 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 573.54s > 573.11s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 18):
   -> walltime = 573.535897104 >= 573.107367292
--------------------------------
[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     : 5.32 us    (52.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000018.sham                 [Shamrock Dump][rank=0]
              - took 19.26 ms, bandwidth = 930.57 MB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 573.535897104 -> 603.535897104

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.11808608933264224)
   -> iter = None (current = 399)
   -> walltime = 603.535897104 (current = 573.5598392300001)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 603.54s)      [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     : 5.53 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 341.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6324387538580247
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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    | 6.0006e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9309859722926188 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.92s (niter = 5) global walltime = 574.94s (max_walltime = 603.54s)  [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     : 5.41 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 380.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [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    | 6.0650e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9202779022389815 (tsim/hr)                            [sph::Model][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     : 7.09 us    (2.1%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 324.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9842e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9119910684463446 (tsim/hr)                            [sph::Model][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     : 5.63 us    (1.5%)
   patch tree reduce : 1.14 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 345.96 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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    | 6.0686e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.929121844218159 (tsim/hr)                             [sph::Model][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     : 5.70 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 307.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0543e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.931397420409072 (tsim/hr)                             [sph::Model][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.07 us    (1.6%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 362.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0623e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9373508323369157 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.12s (niter = 3) global walltime = 581.81s (max_walltime = 603.54s)  [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.43 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.83 us    (0.5%)
   LB compute        : 340.18 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.89 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [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    | 6.0711e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9436642159594419 (tsim/hr)                            [sph::Model][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     : 5.85 us    (1.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 330.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0169e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9403972139342669 (tsim/hr)                            [sph::Model][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     : 6.68 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 364.15 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0801e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9231553518171034 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.12s (niter = 3) global walltime = 585.92s (max_walltime = 603.54s)  [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     : 5.04 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 298.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.6275e+04 | 82944 |      1 | 1.474e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8582644827378202 (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     : 7.60 us    (1.9%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 380.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1012e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9348621453671921 (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     : 5.51 us    (1.5%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 340.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.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    | 6.0898e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9377048403129278 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.76s (niter = 2) global walltime = 590.12s (max_walltime = 603.54s)  [SPH][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     : 5.45 us    (1.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 364.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0883e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9422985184951628 (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     : 5.80 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 331.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0253e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9375462830550823 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 592.86s (max_walltime = 603.54s)  [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     : 5.61 us    (1.5%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 349.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0507e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9197341298195989 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 594.23s (max_walltime = 603.54s)  [SPH][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     : 5.56 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 415.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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.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    | 6.0683e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9265465669824903 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 595.60s (max_walltime = 603.54s)  [SPH][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     : 5.59 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 365.49 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.623734085648148
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.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.8641e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8995831812973922 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 597.02s (max_walltime = 603.54s)  [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     : 4.93 us    (1.3%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 373.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1049e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9411330856233846 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 598.38s (max_walltime = 603.54s)  [SPH][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     : 5.01 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 310.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0922e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.944013359337523 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 599.74s (max_walltime = 603.54s)  [SPH][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     : 4.91 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 326.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.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    | 6.0504e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9425740865993765 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 601.11s (max_walltime = 603.54s)  [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     : 5.40 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 346.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [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    | 6.0940e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9232629289338007 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 602.47s (max_walltime = 603.54s)  [SPH][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     : 5.13 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 344.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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    | 6.0949e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9274204660802425 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 603.84s > 603.54s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 19):
   -> walltime = 603.8351834690001 >= 603.535897104
--------------------------------
[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     : 5.61 us    (53.7%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000019.sham                 [Shamrock Dump][rank=0]
              - took 6.54 ms, bandwidth = 2.74 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 603.8351834690001 -> 633.8351834690001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.1258762849833696)
   -> iter = None (current = 421)
   -> walltime = 633.8351834690001 (current = 603.846459976)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 633.84s)      [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     : 5.41 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 331.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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    | 6.0673e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9274247678700022 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.84s (niter = 5) global walltime = 605.21s (max_walltime = 633.84s)  [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     : 5.21 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 310.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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    | 6.1045e+04 | 82944 |      1 | 1.359e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.937576198292147 (tsim/hr)                             [sph::Model][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     : 5.81 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 317.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0783e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9382416298548113 (tsim/hr)                            [sph::Model][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.36 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 404.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.0936e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9455229319025025 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 315.97 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6326678240740742
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.0794e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9219523273590906 (tsim/hr)                            [sph::Model][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.42 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 314.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.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.9883e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9121115262588265 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.10s (niter = 3) global walltime = 612.05s (max_walltime = 633.84s)  [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     : 4.68 us    (1.2%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 373.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (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.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    | 6.0654e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9280967388216117 (tsim/hr)                            [sph::Model][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.22 us    (1.8%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 318.31 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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    | 6.0150e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9248151336111112 (tsim/hr)                            [sph::Model][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     : 5.78 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 335.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.632667824074074
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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    | 6.0521e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9352104584166198 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.11s (niter = 3) global walltime = 616.17s (max_walltime = 633.84s)  [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     : 5.19 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 310.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0423e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9386218661097031 (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     : 6.21 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 307.43 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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    | 6.0916e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9514691052381183 (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     : 5.75 us    (1.5%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 356.68 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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    | 6.0986e+04 | 82944 |      1 | 1.360e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.925621409417695 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.74s (niter = 2) global walltime = 620.27s (max_walltime = 633.84s)  [SPH][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     : 5.38 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 311.00 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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    | 6.0742e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9260296195314152 (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     : 5.99 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 341.32 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0652e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9289937654769285 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 623.01s (max_walltime = 633.84s)  [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     : 5.17 us    (1.3%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 388.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 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.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    | 6.0481e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9309133923150184 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 624.38s (max_walltime = 633.84s)  [SPH][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     : 5.26 us    (1.5%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 339.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.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    | 6.0942e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9428147176821368 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 625.74s (max_walltime = 633.84s)  [SPH][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     : 5.19 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 303.42 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.9746e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9292699346342064 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.37s (niter = 1) global walltime = 627.13s (max_walltime = 633.84s)  [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     : 5.44 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 350.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0774e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9236075956531992 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 628.50s (max_walltime = 633.84s)  [SPH][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     : 6.09 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 362.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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    | 6.0916e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9299108824749714 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 629.86s (max_walltime = 633.84s)  [SPH][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     : 5.30 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 349.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9454e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9118506252733559 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 631.26s (max_walltime = 633.84s)  [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     : 5.66 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 339.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1059e+04 | 82944 |      1 | 1.358e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9410779180208229 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 632.62s (max_walltime = 633.84s)  [SPH][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     : 5.00 us    (1.2%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 389.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.1212e+04 | 82944 |      1 | 1.355e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9482841748366049 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 633.97s > 633.84s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 20):
   -> walltime = 633.973622233 >= 633.8351834690001
--------------------------------
[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     : 5.57 us    (53.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000020.sham                 [Shamrock Dump][rank=0]
              - took 9.26 ms, bandwidth = 1.93 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 633.973622233 -> 663.973622233

[Simulation] Evolve until next trigger(s) :
   -> t = 0.13611111111111113 (current = 0.1336669751587592)
   -> iter = None (current = 443)
   -> walltime = 663.973622233 (current = 633.987817296)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 663.97s)      [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     : 5.08 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 347.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9882e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9326651782187094 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.93s (niter = 5) global walltime = 635.37s (max_walltime = 663.97s)  [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     : 4.91 us    (0.7%)
   patch tree reduce : 1.51 us    (0.2%)
   gen split merge   : 751.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 637.99 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0717e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9197749533471066 (tsim/hr)                            [sph::Model][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     : 5.69 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 360.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0903e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9266010341494029 (tsim/hr)                            [sph::Model][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.06 us    (1.7%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 334.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.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.8972e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9013073345112513 (tsim/hr)                            [sph::Model][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.33 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 376.06 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 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.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.9704e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9168686345996009 (tsim/hr)                            [sph::Model][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.75 us    (1.1%)
   patch tree reduce : 1.63 us    (0.3%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 602.77 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 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.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.9898e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9244511298443814 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 642.29s (max_walltime = 663.97s)  [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     : 5.95 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 316.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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    | 6.0970e+04 | 82944 |      1 | 1.360e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8578392187805713 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 451                                                     [SPH][rank=0]
Info: time since start : 643.650480052 (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 = 663.973622233 (current = 646.0548762550001)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 663.97s)      [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     : 6.12 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 347.79 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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.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.4943e+04 | 82944 |      1 | 1.510e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8328669239544866 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.02s (niter = 2) global walltime = 647.57s (max_walltime = 663.97s)  [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     : 5.77 us    (1.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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 = (-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    | 6.0876e+04 | 82944 |      1 | 1.363e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9267845043447501 (tsim/hr)                            [sph::Model][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     : 5.71 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 349.46 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0371e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9232693297475434 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.83s (niter = 2) global walltime = 650.31s (max_walltime = 663.97s)  [SPH][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     : 5.53 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 333.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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    | 6.0266e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9260559857425444 (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     : 5.94 us    (1.5%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 369.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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    | 6.0013e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9267615755877531 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 653.07s (max_walltime = 663.97s)  [SPH][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     : 5.26 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 292.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.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.9966e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9308623544929274 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 654.46s (max_walltime = 663.97s)  [SPH][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     : 5.07 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 357.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.8685e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9159352516579837 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 655.87s (max_walltime = 663.97s)  [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     : 5.35 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 318.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0741e+04 | 82944 |      1 | 1.366e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9216794574359704 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 657.24s (max_walltime = 663.97s)  [SPH][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     : 5.48 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 334.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0609e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9237391427055667 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 658.61s (max_walltime = 663.97s)  [SPH][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     : 5.20 us    (1.3%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 368.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9818e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.915896772402455 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 659.99s (max_walltime = 663.97s)  [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     : 5.10 us    (1.4%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 351.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0071e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9242309483383064 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 661.38s (max_walltime = 663.97s)  [SPH][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     : 5.45 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 343.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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    | 6.0443e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9346807119782026 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 662.75s (max_walltime = 663.97s)  [SPH][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     : 5.04 us    (1.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 380.93 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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    | 6.0078e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9339586002498603 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 664.13s > 663.97s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 21):
   -> walltime = 664.1333708420001 >= 663.973622233
--------------------------------
[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     : 5.34 us    (52.8%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000021.sham                 [Shamrock Dump][rank=0]
              - took 15.16 ms, bandwidth = 1.18 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 664.1333708420001 -> 694.1333708420001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.1407130626588657)
   -> iter = None (current = 463)
   -> walltime = 694.1333708420001 (current = 664.154281293)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 694.13s)      [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     : 5.54 us    (1.4%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 390.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9701e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9067671239298013 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.95s (niter = 5) global walltime = 665.54s (max_walltime = 694.13s)  [SPH][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     : 5.03 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 304.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0886e+04 | 82944 |      1 | 1.362e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9288386326701579 (tsim/hr)                            [sph::Model][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.06 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.74 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [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    | 6.0328e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.924592731477585 (tsim/hr)                             [sph::Model][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.17 us    (1.8%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 321.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9078e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9098246437507846 (tsim/hr)                            [sph::Model][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.21 us    (1.9%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 312.21 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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    | 6.0270e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9328851934493546 (tsim/hr)                            [sph::Model][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     : 5.59 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 342.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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    | 6.0145e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9358878779467018 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 672.45s (max_walltime = 694.13s)  [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     : 5.20 us    (1.3%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 369.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0794e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9512086327872531 (tsim/hr)                            [sph::Model][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     : 5.90 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 310.50 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.0590e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.921511786582928 (tsim/hr)                             [sph::Model][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     : 5.46 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 316.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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.9246e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9051348969793737 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.14s (niter = 3) global walltime = 676.58s (max_walltime = 694.13s)  [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     : 4.90 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 303.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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    | 6.0941e+04 | 82944 |      1 | 1.361e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9354161015420174 (tsim/hr)                            [sph::Model][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     : 84.87 us   (19.2%)
   patch tree reduce : 1.84 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 323.86 us  (73.4%)
   LB move op cnt    : 0
   LB apply          : 22.04 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9762e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9218666461601782 (tsim/hr)                            [sph::Model][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     : 5.99 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 338.00 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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    | 6.0092e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9317461696791035 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.76s (niter = 2) global walltime = 680.72s (max_walltime = 694.13s)  [SPH][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     : 5.00 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 347.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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    | 6.0775e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.947414610740675 (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     : 6.64 us    (1.8%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 356.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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.9107e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8996252068220655 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 683.49s (max_walltime = 694.13s)  [SPH][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     : 5.77 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 360.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 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.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    | 6.0237e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9209646011467124 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 684.87s (max_walltime = 694.13s)  [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     : 5.53 us    (1.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 368.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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.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    | 6.0641e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9315128158096772 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 686.24s (max_walltime = 694.13s)  [SPH][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     : 5.11 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 364.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.9878e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9243471596755957 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 687.62s (max_walltime = 694.13s)  [SPH][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.15 us    (1.9%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 300.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.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    | 6.0479e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9384468298961922 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 689.00s (max_walltime = 694.13s)  [SPH][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     : 5.76 us    (1.5%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 362.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.9943e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9351549882893262 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 690.38s (max_walltime = 694.13s)  [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     : 5.06 us    (1.3%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 365.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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    | 6.0629e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9198343255582142 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 691.75s (max_walltime = 694.13s)  [SPH][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     : 5.87 us    (1.8%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.77 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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    | 6.0272e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9184222469202845 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 693.13s (max_walltime = 694.13s)  [SPH][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     : 5.69 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 316.07 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8715e+04 | 82944 |      1 | 1.413e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8988032243942026 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 694.54s > 694.13s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 22):
   -> walltime = 694.5441247020001 >= 694.1333708420001
--------------------------------
[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     : 5.23 us    (52.5%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000022.sham                 [Shamrock Dump][rank=0]
              - took 9.68 ms, bandwidth = 1.85 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 694.5441247020001 -> 724.5441247020001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.1485087282570789)
   -> iter = None (current = 485)
   -> walltime = 724.5441247020001 (current = 694.5583461760001)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 724.54s)      [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     : 5.56 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 342.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0639e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9327210118316638 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.84s (niter = 5) global walltime = 695.93s (max_walltime = 724.54s)  [SPH][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     : 5.53 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 358.87 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [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.9599e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9213353000331188 (tsim/hr)                            [sph::Model][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     : 5.56 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 323.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.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    | 6.0347e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9378094893031818 (tsim/hr)                            [sph::Model][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     : 5.56 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 360.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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    | 6.0599e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.92022448093078 (tsim/hr)                              [sph::Model][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     : 5.38 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 368.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.9630e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9094683661037606 (tsim/hr)                            [sph::Model][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     : 6.38 us    (1.7%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 358.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0536e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9275261673383886 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.14s (niter = 3) global walltime = 702.83s (max_walltime = 724.54s)  [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     : 5.48 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 342.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 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.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    | 6.0607e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9330678111158776 (tsim/hr)                            [sph::Model][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.03 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 362.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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.9941e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9274583442229077 (tsim/hr)                            [sph::Model][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     : 5.83 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 335.12 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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.7854e+04 | 82944 |      1 | 1.434e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8998734199359544 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 707.02s (max_walltime = 724.54s)  [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     : 5.54 us    (1.4%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 369.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0102e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9399432985324526 (tsim/hr)                            [sph::Model][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     : 5.78 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 313.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0407e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9185709056350061 (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     : 6.64 us    (1.9%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 324.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0249e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9202546314185805 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 711.15s (max_walltime = 724.54s)  [SPH][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     : 5.39 us    (1.6%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 314.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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    | 6.0157e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9231564360559955 (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     : 6.49 us    (1.9%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 320.71 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 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.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    | 6.0245e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.929041089773692 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 713.91s (max_walltime = 724.54s)  [SPH][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     : 5.43 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 331.42 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.8536e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9073058419740565 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 715.33s (max_walltime = 724.54s)  [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     : 5.25 us    (1.5%)
   patch tree reduce : 1.23 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 321.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0750e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9466485685083748 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 716.69s (max_walltime = 724.54s)  [SPH][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     : 5.63 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 337.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9762e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9092708676687639 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 718.08s (max_walltime = 724.54s)  [SPH][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     : 5.58 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 322.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.9266e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9057350461330936 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 719.48s (max_walltime = 724.54s)  [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     : 5.33 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 369.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 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.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.9593e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9149812117470358 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 720.88s (max_walltime = 724.54s)  [SPH][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     : 5.08 us    (1.3%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 367.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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.8675e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9052939022638069 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 722.29s (max_walltime = 724.54s)  [SPH][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     : 5.48 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 307.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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    | 6.0587e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9395827263051689 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 723.66s (max_walltime = 724.54s)  [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     : 5.15 us    (1.2%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 410.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8551e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9128480771249446 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 725.08s > 724.54s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 23):
   -> walltime = 725.080081415 >= 724.5441247020001
--------------------------------
[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     : 4.87 us    (51.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000023.sham                 [Shamrock Dump][rank=0]
              - took 9.95 ms, bandwidth = 1.80 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 725.080081415 -> 755.080081415

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16333333333333333 (current = 0.15631722515966082)
   -> iter = None (current = 507)
   -> walltime = 755.080081415 (current = 725.094628905)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 755.08s)      [SPH][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     : 5.59 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 362.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.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    | 6.0413e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9164359894700507 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.87s (niter = 5) global walltime = 726.47s (max_walltime = 755.08s)  [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     : 5.92 us    (1.8%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.0089e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9154536967129182 (tsim/hr)                            [sph::Model][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     : 5.63 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 366.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0526e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9262940552782922 (tsim/hr)                            [sph::Model][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     : 5.72 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 320.54 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0422e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.929109937477167 (tsim/hr)                             [sph::Model][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     : 5.60 us    (1.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 310.38 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8351e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9017323264354467 (tsim/hr)                            [sph::Model][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.90 us    (1.7%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 375.00 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 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.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.8585e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9100452740765386 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 733.44s (max_walltime = 755.08s)  [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     : 5.50 us    (0.5%)
   patch tree reduce : 1.18 us    (0.1%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.1%)
   LB compute        : 1.09 ms    (98.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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.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    | 6.0208e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9138582254034835 (tsim/hr)                            [sph::Model][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     : 5.80 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 340.27 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8213e+04 | 82944 |      1 | 1.425e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8873783612092947 (tsim/hr)                            [sph::Model][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     : 5.79 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 316.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.8656e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8981880462798021 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.19s (niter = 3) global walltime = 737.66s (max_walltime = 755.08s)  [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     : 5.30 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 351.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9794e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9199554485401933 (tsim/hr)                            [sph::Model][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     : 5.78 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 350.55 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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    | 6.0433e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9344066551589749 (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     : 5.43 us    (1.3%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 394.95 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9794e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9293302620523096 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.79s (niter = 2) global walltime = 741.81s (max_walltime = 755.08s)  [SPH][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     : 5.30 us    (1.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 358.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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    | 6.0181e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9404021376714918 (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.07 us    (1.5%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 388.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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    | 6.0326e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9169386559779924 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 744.57s (max_walltime = 755.08s)  [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     : 5.01 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 351.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.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    | 6.0647e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9258646033218548 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 745.93s (max_walltime = 755.08s)  [SPH][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     : 5.75 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 336.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9497e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9125038175738609 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 747.33s (max_walltime = 755.08s)  [SPH][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     : 5.16 us    (1.3%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 368.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9743e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9207142273107674 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 748.72s (max_walltime = 755.08s)  [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     : 5.20 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 344.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.9709e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9248493389744432 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 750.11s (max_walltime = 755.08s)  [SPH][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     : 4.94 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 310.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.0412e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9406829522464961 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 751.49s (max_walltime = 755.08s)  [SPH][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     : 5.12 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 327.60 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.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.9999e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7451940018724289 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 752.87s (max_walltime = 755.08s)  [SPH][rank=0]
Info: iteration since start : 528                                                     [SPH][rank=0]
Info: time since start : 752.8689522970001 (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 = 755.080081415 (current = 755.469231605)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 755.08s)      [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     : 5.91 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 394.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 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.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    | 6.0551e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9239640995768041 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 756.84s > 755.08s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 24):
   -> walltime = 756.8403525370001 >= 755.080081415
--------------------------------
[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     : 5.13 us    (54.3%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000024.sham                 [Shamrock Dump][rank=0]
              - took 6.35 ms, bandwidth = 2.82 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 756.8403525370001 -> 786.8403525370001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.16368490457036308)
   -> iter = None (current = 528)
   -> walltime = 786.8403525370001 (current = 756.851440292)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 786.84s)      [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     : 5.49 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 372.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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    | 6.0815e+04 | 82944 |      1 | 1.364e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9321946082915641 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.83s (niter = 5) global walltime = 758.22s (max_walltime = 786.84s)  [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     : 5.23 us    (1.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 353.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.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    | 6.0617e+04 | 82944 |      1 | 1.368e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9336160131865708 (tsim/hr)                            [sph::Model][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     : 5.85 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 371.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0604e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9380932760527907 (tsim/hr)                            [sph::Model][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     : 5.75 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 318.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.0568e+04 | 82944 |      1 | 1.369e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9424391395536336 (tsim/hr)                            [sph::Model][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     : 5.53 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 373.40 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0659e+04 | 82944 |      1 | 1.367e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9489929140724471 (tsim/hr)                            [sph::Model][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     : 5.71 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 342.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0238e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9164472603501725 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.11s (niter = 3) global walltime = 765.07s (max_walltime = 786.84s)  [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     : 5.39 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 342.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0779e+04 | 82944 |      1 | 1.365e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9287880678690642 (tsim/hr)                            [sph::Model][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.04 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 360.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.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.6992e+04 | 82944 |      1 | 1.455e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8749872632810349 (tsim/hr)                            [sph::Model][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.57 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 335.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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.8635e+04 | 82944 |      1 | 1.415e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9046059263989549 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.15s (niter = 3) global walltime = 769.31s (max_walltime = 786.84s)  [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     : 5.23 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 365.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.8670e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9097558555411669 (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     : 5.80 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 361.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.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    | 6.0526e+04 | 82944 |      1 | 1.370e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9435291466593743 (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.21 us    (1.4%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 410.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.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    | 6.0321e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9182211843585594 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 2) global walltime = 773.47s (max_walltime = 786.84s)  [SPH][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     : 5.39 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 356.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9964e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9168377449425321 (tsim/hr)                            [sph::Model][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     : 5.74 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 311.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.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.9210e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9095325288584502 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 776.26s (max_walltime = 786.84s)  [SPH][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     : 5.17 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 346.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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    | 6.0194e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9291538530721976 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 777.64s (max_walltime = 786.84s)  [SPH][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     : 5.40 us    (1.4%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 371.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0007e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9309802688002609 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 779.02s (max_walltime = 786.84s)  [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     : 5.66 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 324.68 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.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.9805e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9327716221070117 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 780.41s (max_walltime = 786.84s)  [SPH][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     : 5.39 us    (1.6%)
   patch tree reduce : 1.19 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 313.76 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0002e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9108051838589661 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 781.79s (max_walltime = 786.84s)  [SPH][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     : 5.47 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 310.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.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    | 6.0285e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9190508701131865 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 783.17s (max_walltime = 786.84s)  [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     : 5.40 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 330.07 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.9884e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9170680877078242 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 784.56s (max_walltime = 786.84s)  [SPH][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     : 5.41 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 349.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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.9845e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.920808500873796 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 785.94s (max_walltime = 786.84s)  [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     : 5.46 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 307.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.7953e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8961243871155014 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 787.38s > 786.84s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 25):
   -> walltime = 787.3771961780001 >= 786.8403525370001
--------------------------------
[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     : 4.94 us    (53.2%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000025.sham                 [Shamrock Dump][rank=0]
              - took 6.47 ms, bandwidth = 2.77 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 787.3771961780001 -> 817.3771961780001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.17149069782994308)
   -> iter = None (current = 550)
   -> walltime = 817.3771961780001 (current = 787.388406322)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 817.38s)      [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     : 5.45 us    (1.3%)
   patch tree reduce : 1.47 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 409.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.9667e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9274076177266233 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.96s (niter = 5) global walltime = 788.78s (max_walltime = 817.38s)  [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     : 5.92 us    (1.5%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 377.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.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.9315e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9004209037582042 (tsim/hr)                            [sph::Model][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     : 5.93 us    (1.5%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 375.58 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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    | 6.0342e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.91994882960759 (tsim/hr)                              [sph::Model][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     : 5.79 us    (1.4%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 389.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.8585e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8971934018319678 (tsim/hr)                            [sph::Model][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.10 us    (1.5%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 394.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0015e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9234377135577271 (tsim/hr)                            [sph::Model][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     : 5.62 us    (1.4%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 390.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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    | 6.0413e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9341622863070198 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 795.73s (max_walltime = 817.38s)  [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     : 5.67 us    (1.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 372.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9553e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9256288578708374 (tsim/hr)                            [sph::Model][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     : 6.23 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 346.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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    | 6.0283e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9420237081074492 (tsim/hr)                            [sph::Model][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     : 5.63 us    (1.5%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 364.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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    | 6.0378e+04 | 82944 |      1 | 1.374e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9179243924920115 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.16s (niter = 3) global walltime = 799.88s (max_walltime = 817.38s)  [SPH][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     : 5.24 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 360.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9573e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9096588947353857 (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     : 6.14 us    (1.9%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 305.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.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    | 6.0480e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.927758739379072 (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     : 5.71 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 316.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8856e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9072038138521399 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.78s (niter = 2) global walltime = 804.05s (max_walltime = 817.38s)  [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     : 5.34 us    (1.5%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 339.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.8848e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9116507568664962 (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     : 5.69 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 312.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.0449e+04 | 82944 |      1 | 1.372e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9413795880267821 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 806.84s (max_walltime = 817.38s)  [SPH][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     : 5.42 us    (1.3%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 402.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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    | 6.0500e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9200759380178609 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 808.21s (max_walltime = 817.38s)  [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     : 5.95 us    (1.5%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 378.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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    | 6.0237e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9201031241921666 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 809.59s (max_walltime = 817.38s)  [SPH][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     : 5.65 us    (1.5%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 368.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9500e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9130218698636298 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 810.98s (max_walltime = 817.38s)  [SPH][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     : 5.65 us    (1.3%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 1.05 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 406.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0205e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9282989461819975 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 812.36s (max_walltime = 817.38s)  [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     : 5.48 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.3%)
   LB compute        : 392.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.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.8412e+04 | 82944 |      1 | 1.420e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9051862487991962 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 813.78s (max_walltime = 817.38s)  [SPH][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     : 5.54 us    (1.4%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 385.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [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.9864e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9325638400129939 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 815.17s (max_walltime = 817.38s)  [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     : 5.46 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 353.80 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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    | 6.0150e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9122298898952778 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 816.55s (max_walltime = 817.38s)  [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     : 5.18 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 385.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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    | 6.0196e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9168145199339961 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 817.93s > 817.38s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 26):
   -> walltime = 817.927381737 >= 817.3771961780001
--------------------------------
[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     : 5.40 us    (52.4%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000026.sham                 [Shamrock Dump][rank=0]
              - took 6.46 ms, bandwidth = 2.78 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 817.927381737 -> 847.927381737

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.1792853915927789)
   -> iter = None (current = 572)
   -> walltime = 847.927381737 (current = 817.9386258650001)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 847.93s)      [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     : 5.40 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 341.89 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9526e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9106617702042812 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.97s (niter = 5) global walltime = 819.33s (max_walltime = 847.93s)  [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     : 5.58 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 360.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0141e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9243760192377668 (tsim/hr)                            [sph::Model][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     : 5.70 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 345.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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.8819e+04 | 82944 |      1 | 1.410e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9084962174054406 (tsim/hr)                            [sph::Model][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     : 5.81 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 349.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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.9916e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9301894284450064 (tsim/hr)                            [sph::Model][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     : 5.78 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 354.26 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.9602e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9038835244594684 (tsim/hr)                            [sph::Model][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     : 5.49 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 387.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0153e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9161082068809584 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 826.28s (max_walltime = 847.93s)  [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.12 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 309.60 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.6857e+04 | 82944 |      1 | 1.459e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8697753305209059 (tsim/hr)                            [sph::Model][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     : 5.74 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 344.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.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.8868e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9047506552206221 (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     : 6.18 us    (1.9%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 300.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.9443e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9180561133701987 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 830.55s (max_walltime = 847.93s)  [SPH][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     : 5.13 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 345.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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    | 6.0285e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9358109913054836 (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     : 5.72 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 363.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0424e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9429707304179232 (tsim/hr)                            [sph::Model][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     : 5.94 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 384.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8118e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8826658943263838 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.80s (niter = 2) global walltime = 834.73s (max_walltime = 847.93s)  [SPH][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     : 34.05 us   (8.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 338.32 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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    | 6.0417e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.921569380367043 (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     : 5.72 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 360.99 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0312e+04 | 82944 |      1 | 1.375e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.92414912536364 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 837.48s (max_walltime = 847.93s)  [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     : 5.27 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 345.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (8.2%)
Warning: High interface/patch volume ratio.                                  [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    | 6.0185e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9265890350657547 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 838.86s (max_walltime = 847.93s)  [SPH][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     : 5.77 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 355.55 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9994e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9282621892495186 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 840.24s (max_walltime = 847.93s)  [SPH][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     : 5.47 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 320.96 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0166e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9357594651928967 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 841.62s (max_walltime = 847.93s)  [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     : 5.08 us    (1.6%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 305.30 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0226e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9148772409717472 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 843.00s (max_walltime = 847.93s)  [SPH][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     : 5.03 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 317.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.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    | 6.0428e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9219119990345974 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 844.37s (max_walltime = 847.93s)  [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     : 5.30 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 314.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9338e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9094006251687546 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 845.77s (max_walltime = 847.93s)  [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     : 5.59 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 340.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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.9963e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.923351553009849 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 847.16s (max_walltime = 847.93s)  [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     : 5.14 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 332.96 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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    | 6.0215e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9318443979818144 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 848.54s > 847.93s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 27):
   -> walltime = 848.537078693 >= 847.927381737
--------------------------------
[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.21 us    (50.1%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000027.sham                 [Shamrock Dump][rank=0]
              - took 6.41 ms, bandwidth = 2.80 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 848.537078693 -> 878.537078693

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19055555555555553 (current = 0.18707535826135385)
   -> iter = None (current = 594)
   -> walltime = 878.537078693 (current = 848.548198367)

Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = 878.54s)      [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     : 5.30 us    (1.2%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 426.51 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.9858e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9311398128844292 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.93s (niter = 5) global walltime = 849.94s (max_walltime = 878.54s)  [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     : 4.99 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 311.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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    | 6.0029e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9388544431237313 (tsim/hr)                            [sph::Model][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     : 6.09 us    (1.7%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 347.20 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.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.9737e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9089338369392833 (tsim/hr)                            [sph::Model][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.12 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 315.19 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0186e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9198059134123664 (tsim/hr)                            [sph::Model][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     : 6.02 us    (1.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 312.96 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8350e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8958837988298379 (tsim/hr)                            [sph::Model][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.57 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 366.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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    | 6.0093e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9271336123446774 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 856.89s (max_walltime = 878.54s)  [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.05 us    (1.3%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 361.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8576e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9083089502148787 (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     : 5.70 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 364.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.9991e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9351917297221224 (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     : 5.77 us    (1.8%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 309.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0131e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9148472677011423 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 861.07s (max_walltime = 878.54s)  [SPH][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     : 6.10 us    (1.7%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 328.79 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.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    | 6.0133e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.737493434750446 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 605                                                     [SPH][rank=0]
Info: time since start : 862.453208077 (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 = 878.537078693 (current = 864.850217368)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 878.54s)      [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     : 5.76 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 562.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 384.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0482e+04 | 82944 |      1 | 1.371e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.927689765926258 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.75s (niter = 2) global walltime = 866.22s (max_walltime = 878.54s)  [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.01 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 343.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.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    | 6.0415e+04 | 82944 |      1 | 1.373e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9310892039590934 (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     : 5.95 us    (1.4%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 397.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.9023e+04 | 82944 |      1 | 1.405e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.914216137851936 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 1) global walltime = 869.00s (max_walltime = 878.54s)  [SPH][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     : 5.18 us    (1.2%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 1.03 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 402.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8934e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9176266128345347 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 870.41s (max_walltime = 878.54s)  [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     : 5.59 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 349.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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    | 6.0135e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9116971598999707 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 871.79s (max_walltime = 878.54s)  [SPH][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     : 5.55 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 356.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8861e+04 | 82944 |      1 | 1.409e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.896160712402062 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 873.20s (max_walltime = 878.54s)  [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     : 5.54 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 319.90 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.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.9696e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9129333839034514 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 874.59s (max_walltime = 878.54s)  [SPH][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     : 5.51 us    (1.3%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 391.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0136e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9239562738297268 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 875.97s (max_walltime = 878.54s)  [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     : 5.33 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 306.67 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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.9645e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9209069331726647 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 877.37s (max_walltime = 878.54s)  [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.18 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 316.95 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0241e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9348788996651084 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 878.74s > 878.54s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 28):
   -> walltime = 878.7436243950001 >= 878.537078693
--------------------------------
[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     : 5.62 us    (52.2%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000028.sham                 [Shamrock Dump][rank=0]
              - took 6.57 ms, bandwidth = 2.73 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 878.7436243950001 -> 908.7436243950001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.19409937116308176)
   -> iter = None (current = 614)
   -> walltime = 908.7436243950001 (current = 878.755075428)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 908.74s)      [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     : 5.45 us    (1.6%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 315.53 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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.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.9334e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8996483841203308 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.00s (niter = 5) global walltime = 880.15s (max_walltime = 908.74s)  [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     : 5.01 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 347.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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    | 6.0252e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9174398813936836 (tsim/hr)                            [sph::Model][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     : 5.92 us    (1.5%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 367.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.0173e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9203220024446198 (tsim/hr)                            [sph::Model][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     : 5.66 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 351.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0264e+04 | 82944 |      1 | 1.376e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9260172873961237 (tsim/hr)                            [sph::Model][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     : 5.75 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 316.86 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.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.9835e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9239272789546396 (tsim/hr)                            [sph::Model][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.17 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 347.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.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.7125e+04 | 82944 |      1 | 1.452e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8865957810267117 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.19s (niter = 3) global walltime = 887.13s (max_walltime = 908.74s)  [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.65 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 343.25 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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    | 6.0009e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9363227911383816 (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     : 5.99 us    (1.5%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 366.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [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.9770e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9076773016659757 (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     : 6.27 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 358.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.9764e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9115271240110908 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.18s (niter = 3) global walltime = 891.29s (max_walltime = 908.74s)  [SPH][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     : 5.44 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 345.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.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.8676e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.899004530936946 (tsim/hr)                             [sph::Model][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     : 5.48 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 327.29 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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.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.9999e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9236601956219319 (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     : 5.95 us    (1.4%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 397.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.9673e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9232269715702979 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.79s (niter = 2) global walltime = 895.48s (max_walltime = 908.74s)  [SPH][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     : 5.40 us    (1.4%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 354.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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.9981e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9328208539103986 (tsim/hr)                            [sph::Model][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     : 5.99 us    (1.5%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 393.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8555e+04 | 82944 |      1 | 1.417e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.889099344264656 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 898.28s (max_walltime = 908.74s)  [SPH][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     : 5.38 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 303.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9793e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9118275106508408 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 899.67s (max_walltime = 908.74s)  [SPH][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     : 5.59 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 315.39 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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.9601e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9130295653873309 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 901.06s (max_walltime = 908.74s)  [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     : 5.45 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 314.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9342e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9134047345780658 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 902.46s (max_walltime = 908.74s)  [SPH][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     : 5.35 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 311.63 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9728e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9239136342541371 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 903.85s (max_walltime = 908.74s)  [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     : 5.78 us    (1.5%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 357.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.9570e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9262787344347065 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 905.25s (max_walltime = 908.74s)  [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     : 5.65 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 365.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8889e+04 | 82944 |      1 | 1.408e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9206413173194097 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 906.66s (max_walltime = 908.74s)  [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     : 5.41 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 326.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.9917e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9113403509145341 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 908.04s (max_walltime = 908.74s)  [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     : 5.52 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 343.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.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.9603e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9105795360336449 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 909.43s > 908.74s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 29):
   -> walltime = 909.4347212560001 >= 908.7436243950001
--------------------------------
[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     : 5.68 us    (51.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000029.sham                 [Shamrock Dump][rank=0]
              - took 6.33 ms, bandwidth = 2.83 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 909.4347212560001 -> 939.4347212560001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.20188865686273483)
   -> iter = None (current = 636)
   -> walltime = 939.4347212560001 (current = 909.4458319060001)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 939.43s)      [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     : 5.64 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 366.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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.9863e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9187952435533898 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.93s (niter = 5) global walltime = 910.83s (max_walltime = 939.43s)  [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     : 5.70 us    (1.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 304.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9135e+04 | 82944 |      1 | 1.403e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9120442156033625 (tsim/hr)                            [sph::Model][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     : 5.33 us    (1.6%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 320.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0049e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9308446890958291 (tsim/hr)                            [sph::Model][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     : 5.95 us    (1.5%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 366.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.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.9770e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9314285731780835 (tsim/hr)                            [sph::Model][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     : 5.75 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 335.14 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0030e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.913181666888769 (tsim/hr)                             [sph::Model][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     : 5.85 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 359.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.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.9861e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9146371767203956 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 917.78s (max_walltime = 939.43s)  [SPH][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     : 5.43 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 314.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.9647e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9156051243582825 (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     : 6.01 us    (1.8%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 318.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0005e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9255749000943911 (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     : 6.03 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 362.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9340e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9199749014602452 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 3) global walltime = 921.95s (max_walltime = 939.43s)  [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     : 5.34 us    (1.5%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 336.14 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9533e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9278557596789524 (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     : 6.12 us    (1.5%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 374.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.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.9753e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9066229596609691 (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.05 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 348.16 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.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    | 6.0110e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9159630305237498 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.78s (niter = 2) global walltime = 926.12s (max_walltime = 939.43s)  [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     : 5.69 us    (1.4%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 386.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.9748e+04 | 82944 |      1 | 1.388e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9145486075654042 (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     : 5.77 us    (1.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 298.39 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9958e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9221165591813514 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 928.89s (max_walltime = 939.43s)  [SPH][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     : 5.73 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 363.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0021e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.927665706427655 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 930.27s (max_walltime = 939.43s)  [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     : 5.11 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 369.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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    | 6.0198e+04 | 82944 |      1 | 1.378e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9352239341011283 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 931.65s (max_walltime = 939.43s)  [SPH][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     : 5.71 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 304.76 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0056e+04 | 82944 |      1 | 1.381e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9110327034308736 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 933.04s (max_walltime = 939.43s)  [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     : 5.08 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 309.82 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9958e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9134500353315081 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 934.42s (max_walltime = 939.43s)  [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     : 5.24 us    (1.5%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 329.53 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9845e+04 | 82944 |      1 | 1.386e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.915834215116868 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 935.81s (max_walltime = 939.43s)  [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     : 5.52 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 322.43 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9613e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9166016045440348 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 937.20s (max_walltime = 939.43s)  [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     : 5.39 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 321.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.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.9062e+04 | 82944 |      1 | 1.404e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9126297110221816 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 938.61s (max_walltime = 939.43s)  [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     : 5.01 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 303.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.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.8561e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9095651124208356 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 940.02s > 939.43s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 30):
   -> walltime = 940.0238162700001 >= 939.4347212560001
--------------------------------
[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     : 5.69 us    (55.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000030.sham                 [Shamrock Dump][rank=0]
              - took 6.44 ms, bandwidth = 2.78 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 940.0238162700001 -> 970.0238162700001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.2096846711034847)
   -> iter = None (current = 658)
   -> walltime = 970.0238162700001 (current = 940.0348978640001)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 970.02s)      [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     : 5.46 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 310.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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 = (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    | 6.0005e+04 | 82944 |      1 | 1.382e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9370230661129425 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.92s (niter = 5) global walltime = 941.42s (max_walltime = 970.02s)  [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     : 5.18 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 360.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.9947e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9109589507663679 (tsim/hr)                            [sph::Model][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     : 5.72 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 337.01 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 6.0166e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9183056349349862 (tsim/hr)                            [sph::Model][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.81 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 334.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.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.9437e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9113619103006827 (tsim/hr)                            [sph::Model][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     : 5.55 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 339.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.6571e+04 | 82944 |      1 | 1.466e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8716068060725028 (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     : 5.89 us    (1.5%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 367.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.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.9910e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9277095286610783 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 3) global walltime = 948.43s (max_walltime = 970.02s)  [SPH][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     : 5.49 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 381.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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.9798e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9308473373697106 (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     : 5.79 us    (1.4%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 388.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.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    | 6.0237e+04 | 82944 |      1 | 1.377e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9154838913743487 (tsim/hr)                            [sph::Model][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     : 5.94 us    (1.8%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 314.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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    | 6.0112e+04 | 82944 |      1 | 1.380e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9175953782176393 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.18s (niter = 3) global walltime = 952.58s (max_walltime = 970.02s)  [SPH][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     : 5.37 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 361.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.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    | 6.0152e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9224351980872183 (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     : 6.04 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 344.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.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.9650e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9191637710970945 (tsim/hr)                            [sph::Model][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     : 5.99 us    (1.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 364.29 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.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.8938e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9127833931728531 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.79s (niter = 2) global walltime = 956.76s (max_walltime = 970.02s)  [SPH][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     : 5.62 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 328.98 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9938e+04 | 82944 |      1 | 1.384e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9331618508933398 (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     : 5.48 us    (1.6%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 314.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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    | 6.0136e+04 | 82944 |      1 | 1.379e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9116239367512285 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 959.53s (max_walltime = 970.02s)  [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     : 5.11 us    (1.5%)
   patch tree reduce : 1.20 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 318.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.8227e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8864617436367184 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 960.95s (max_walltime = 970.02s)  [SPH][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     : 5.13 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 312.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9884e+04 | 82944 |      1 | 1.385e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9157709073709333 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 962.34s (max_walltime = 970.02s)  [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     : 4.98 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 326.12 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.9347e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9118270422525817 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.39s (niter = 1) global walltime = 963.74s (max_walltime = 970.02s)  [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     : 5.78 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 346.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.8569e+04 | 82944 |      1 | 1.416e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9043125170690196 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 965.16s (max_walltime = 970.02s)  [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     : 5.45 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 332.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9407e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9219670994979394 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 966.55s (max_walltime = 970.02s)  [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     : 4.81 us    (1.3%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 343.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.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.9956e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9087091809958641 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 967.94s (max_walltime = 970.02s)  [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     : 5.25 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 307.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.9607e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9072632403543689 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 969.33s (max_walltime = 970.02s)  [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     : 5.27 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 362.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.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.7274e+04 | 82944 |      1 | 1.448e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.875650034372385 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 970.78s > 970.02s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 31):
   -> walltime = 970.780421551 >= 970.0238162700001
--------------------------------
[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     : 5.71 us    (54.6%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000031.sham                 [Shamrock Dump][rank=0]
              - took 6.32 ms, bandwidth = 2.84 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 970.780421551 -> 1000.780421551

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21777777777777776 (current = 0.21746747295682725)
   -> iter = None (current = 680)
   -> walltime = 1000.780421551 (current = 970.79146946)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 1000.78s)     [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.09 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 313.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.9240e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7978519202998794 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.01s (niter = 5) global walltime = 972.19s (max_walltime = 1000.78s)  [SPH][rank=0]
Info: iteration since start : 682                                                     [SPH][rank=0]
Info: time since start : 972.193081599 (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 = 1000.780421551 (current = 974.6044283140001)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1000.78s)     [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     : 6.25 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 354.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 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.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.8996e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9101317256362722 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.63s (niter = 4) global walltime = 976.01s (max_walltime = 1000.78s)  [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     : 5.70 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 309.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9578e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9237884989566222 (tsim/hr)                            [sph::Model][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.04 us    (1.5%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.4%)
   LB compute        : 376.22 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.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.8259e+04 | 82944 |      1 | 1.424e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9081592273057187 (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     : 5.73 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 353.83 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.9460e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9022766658359502 (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     : 5.80 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 372.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9512e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9069771965441629 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.21s (niter = 3) global walltime = 981.62s (max_walltime = 1000.78s)  [SPH][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     : 4.90 us    (1.3%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 346.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9686e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9137682728563857 (tsim/hr)                            [sph::Model][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.67 us    (1.6%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 394.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.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.9221e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9109759072287821 (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     : 6.26 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 347.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.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.8934e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9110846294111525 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.80s (niter = 2) global walltime = 985.82s (max_walltime = 1000.78s)  [SPH][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     : 5.27 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 366.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9323e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.921871896427178 (tsim/hr)                             [sph::Model][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     : 5.85 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 372.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.9374e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9010112205984228 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.80s (niter = 2) global walltime = 988.62s (max_walltime = 1000.78s)  [SPH][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     : 5.42 us    (1.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 385.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.9418e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9055750057060684 (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     : 5.57 us    (1.4%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 367.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.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.9726e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9144152190172951 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 991.41s (max_walltime = 1000.78s)  [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     : 5.86 us    (1.7%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 327.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9797e+04 | 82944 |      1 | 1.387e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9198562942460359 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 992.80s (max_walltime = 1000.78s)  [SPH][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     : 5.34 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9964e+04 | 82944 |      1 | 1.383e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9270338331792488 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 1) global walltime = 994.18s (max_walltime = 1000.78s)  [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     : 5.13 us    (1.3%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 378.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9631e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9266911321546193 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 995.57s (max_walltime = 1000.78s)  [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     : 5.27 us    (1.2%)
   patch tree reduce : 1.49 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 431.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.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.9445e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9288124112951023 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 996.97s (max_walltime = 1000.78s)  [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     : 5.91 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 361.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.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.9629e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9065370838682034 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 998.36s (max_walltime = 1000.78s)  [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     : 5.36 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 380.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9520e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9088923449660707 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 999.76s (max_walltime = 1000.78s)  [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     : 5.06 us    (1.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 365.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.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.9589e+04 | 82944 |      1 | 1.392e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9141736857252696 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 1001.15s > 1000.78s             [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 32):
   -> walltime = 1001.1493553560001 >= 1000.780421551
--------------------------------
[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     : 5.43 us    (54.0%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000032.sham                 [Shamrock Dump][rank=0]
              - took 6.38 ms, bandwidth = 2.81 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 1001.1493553560001 -> 1031.1493553560001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.22450950328662947)
   -> iter = None (current = 700)
   -> walltime = 1031.1493553560001 (current = 1001.1604547420001)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1031.15s)     [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.64 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 365.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.618923611111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.9255e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9134613728017321 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.01s (niter = 5) global walltime = 1002.56s (max_walltime = 1031.15s)  [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     : 5.38 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 363.14 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9479e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9215808076823457 (tsim/hr)                            [sph::Model][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.07 us    (1.5%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 396.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.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.8784e+04 | 82944 |      1 | 1.411e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9156614809791809 (tsim/hr)                            [sph::Model][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     : 5.72 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 358.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.7088e+04 | 82944 |      1 | 1.453e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8677942232396735 (tsim/hr)                            [sph::Model][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.26 us    (1.6%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 376.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9204e+04 | 82944 |      1 | 1.401e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9039501080923384 (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     : 6.43 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 420.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9303e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9096603772647088 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 3) global walltime = 1009.63s (max_walltime = 1031.15s)  [SPH][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     : 4.96 us    (1.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 355.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.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.7658e+04 | 82944 |      1 | 1.439e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8887388780299671 (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     : 6.45 us    (1.7%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 349.63 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9735e+04 | 82944 |      1 | 1.389e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.925435685979331 (tsim/hr)                             [sph::Model][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.06 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 389.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.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.9644e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9289272551744039 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 3) global walltime = 1013.85s (max_walltime = 1031.15s)  [SPH][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     : 5.58 us    (1.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 394.50 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.9295e+04 | 82944 |      1 | 1.399e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8991484041855358 (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     : 6.37 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 391.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.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.9652e+04 | 82944 |      1 | 1.390e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9084524678413526 (tsim/hr)                            [sph::Model][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.76 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 358.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.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.9024e+04 | 82944 |      1 | 1.405e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9029431897592779 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.81s (niter = 2) global walltime = 1018.05s (max_walltime = 1031.15s)  [SPH][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     : 5.14 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 300.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9613e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9162696474987322 (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     : 5.96 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 347.34 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9019e+04 | 82944 |      1 | 1.405e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9116404510413868 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1020.84s (max_walltime = 1031.15s)  [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     : 5.53 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 315.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.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.9345e+04 | 82944 |      1 | 1.398e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9214282691368988 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1022.24s (max_walltime = 1031.15s)  [SPH][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     : 5.24 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 307.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.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.8109e+04 | 82944 |      1 | 1.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8811989150447234 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1023.67s (max_walltime = 1031.15s)  [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     : 5.84 us    (1.8%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 298.40 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.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.9177e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.901250071435389 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1025.08s (max_walltime = 1031.15s)  [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     : 5.16 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 323.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9360e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9081115536769047 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1026.47s (max_walltime = 1031.15s)  [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     : 4.93 us    (1.2%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 387.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9503e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9146206101467521 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1027.87s (max_walltime = 1031.15s)  [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     : 5.16 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 326.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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    | 5.7952e+04 | 82944 |      1 | 1.431e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8951917988246101 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1029.30s (max_walltime = 1031.15s)  [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     : 5.25 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 332.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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    | 5.9453e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9231471164748024 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1030.70s (max_walltime = 1031.15s)  [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     : 5.33 us    (1.5%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 343.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.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.9366e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9267671429568274 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 1032.10s > 1031.15s             [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 33):
   -> walltime = 1032.097281653 >= 1031.1493553560001
--------------------------------
[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     : 5.52 us    (54.3%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000033.sham                 [Shamrock Dump][rank=0]
              - took 6.27 ms, bandwidth = 2.86 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 1032.097281653 -> 1062.097281653

[Simulation] Evolve until next trigger(s) :
   -> t = 0.245 (current = 0.23230761781247017)
   -> iter = None (current = 722)
   -> walltime = 1062.097281653 (current = 1032.108296552)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1062.10s)     [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     : 5.82 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 351.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.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.8649e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8910187804604455 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.08s (niter = 5) global walltime = 1033.52s (max_walltime = 1062.10s)  [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     : 5.14 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 312.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9232e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9038363144593287 (tsim/hr)                            [sph::Model][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     : 5.86 us    (1.4%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 390.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9562e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9130620095068092 (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     : 5.89 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 351.44 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.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.8483e+04 | 82944 |      1 | 1.418e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9008527906247027 (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     : 5.64 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 318.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9535e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9216964397791498 (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     : 6.39 us    (1.9%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 321.38 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.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.9628e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9280128141895292 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.21s (niter = 3) global walltime = 1040.53s (max_walltime = 1062.10s)  [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     : 5.14 us    (1.3%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 382.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.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.8354e+04 | 82944 |      1 | 1.421e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8863954618304518 (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     : 5.69 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 354.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9475e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9073977891927911 (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.07 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.7696e+04 | 82944 |      1 | 1.438e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8843073069412084 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.22s (niter = 3) global walltime = 1044.78s (max_walltime = 1062.10s)  [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     : 5.21 us    (1.6%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 308.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.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.8066e+04 | 82944 |      1 | 1.428e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8942808368161974 (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     : 6.02 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 338.14 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.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.9412e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9196362834413442 (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     : 6.09 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 333.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.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.9410e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9244636096877104 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.82s (niter = 2) global walltime = 1049.01s (max_walltime = 1062.10s)  [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     : 5.64 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 341.35 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9010e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8942096914940293 (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     : 5.87 us    (1.6%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 357.55 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.8974e+04 | 82944 |      1 | 1.406e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8974825965855648 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1051.82s (max_walltime = 1062.10s)  [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     : 5.30 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 330.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9244e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9056254212733618 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1053.22s (max_walltime = 1062.10s)  [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     : 5.56 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 340.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9158e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9085583817125787 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1054.63s (max_walltime = 1062.10s)  [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     : 5.17 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 311.89 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8654e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9052685145193439 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1056.04s (max_walltime = 1062.10s)  [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     : 5.31 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 347.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8940e+04 | 82944 |      1 | 1.407e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9143597512486775 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1057.45s (max_walltime = 1062.10s)  [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     : 5.27 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 313.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.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.8007e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8789959943764349 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1058.88s (max_walltime = 1062.10s)  [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     : 5.13 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 323.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8675e+04 | 82944 |      1 | 1.414e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8928963954385655 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1060.30s (max_walltime = 1062.10s)  [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     : 5.24 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 298.75 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9554e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9103364992884779 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 1061.69s (max_walltime = 1062.10s)  [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     : 5.31 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 311.99 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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.9377e+04 | 82944 |      1 | 1.397e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9119006637717229 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 1063.09s > 1062.10s             [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 34):
   -> walltime = 1063.089244711 >= 1062.097281653
--------------------------------
[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     : 5.39 us    (52.9%)
Info: dump to _to_trash/dustysod_128/dump/dump_0000034.sham                 [Shamrock Dump][rank=0]
              - took 6.44 ms, bandwidth = 2.78 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 1063.089244711 -> 1093.089244711

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

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 1093.09s)     [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     : 5.66 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 354.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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.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.8002e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8951634609831081 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.72s (niter = 4) global walltime = 1064.53s (max_walltime = 1093.09s)  [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     : 5.30 us    (1.6%)
   patch tree reduce : 1.48 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 309.90 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9161e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9177372747384996 (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     : 5.82 us    (1.7%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 330.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.6908e+04 | 82944 |      1 | 1.458e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8875242308721691 (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     : 5.92 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 317.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9412e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.901924520253604 (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     : 5.78 us    (1.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 321.00 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9403e+04 | 82944 |      1 | 1.396e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.90571601449879 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 5.67s (niter = 4) global walltime = 1070.19s (max_walltime = 1093.09s)  [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     : 5.65 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 308.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9553e+04 | 82944 |      1 | 1.393e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9121534631786998 (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     : 5.75 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 341.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.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.9512e+04 | 82944 |      1 | 1.394e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.915892164567316 (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     : 5.74 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 348.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.8022e+04 | 82944 |      1 | 1.430e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8974421128700706 (tsim/hr)                            [sph::Model][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     : 6.17 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 340.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9145e+04 | 82944 |      1 | 1.402e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9196039247940017 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.24s (niter = 3) global walltime = 1075.81s (max_walltime = 1093.09s)  [SPH][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     : 5.13 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 306.42 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.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.7904e+04 | 82944 |      1 | 1.432e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8788786648768261 (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     : 5.53 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 307.63 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9621e+04 | 82944 |      1 | 1.391e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.908890318151053 (tsim/hr)                             [sph::Model][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.00 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 339.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.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.9448e+04 | 82944 |      1 | 1.395e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9103840561131344 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.82s (niter = 2) global walltime = 1080.03s (max_walltime = 1093.09s)  [SPH][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     : 5.21 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 314.50 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.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.9238e+04 | 82944 |      1 | 1.400e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9115225757799722 (tsim/hr)                            [sph::Model][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.63 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 317.18 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.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.8423e+04 | 82944 |      1 | 1.420e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7972190039775875 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.41s (niter = 1) global walltime = 1082.86s (max_walltime = 1093.09s)  [SPH][rank=0]
Info: iteration since start : 759                                                     [SPH][rank=0]
Info: time since start : 1082.857211258 (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 0.745 seconds)

Estimated memory usage: 729 MB

Gallery generated by Sphinx-Gallery