Production run: Black hole disc & lense thirring effect#

This example demonstrates how to run a smoothed particle hydrodynamics (SPH) simulation of a circular disc orbiting around a central point mass potential.

The simulation models:

  • A central star with a given mass and accretion radius

  • A gaseous disc with specified mass, inner/outer radii, and vertical structure

  • Artificial viscosity for angular momentum transport

  • Locally isothermal equation of state

Also this simulation feature rolling dumps (see purge_old_dumps function) to save disk space.

This example is the accumulation of 3 files in a single one to showcase the complete workflow.

  • The actual run script (runscript.py)

  • Plot generation (make_plots.py)

  • Animation from the plots (plot_to_gif.py)

On a cluster or laptop, one can run the code as follows:

mpirun <your parameters> ./shamrock --sycl-cfg 0:0 --loglevel 1 --rscript runscript.py

then after the run is done (or while it is running), one can run the following to generate the plots:

python make_plots.py

Runscript (runscript.py)#

The runscript is the actual simulation with on the fly analysis & rolling dumps

44 import glob
45 import json
46 import os  # for makedirs
47
48 import numpy as np
49
50 import shamrock
51
52 # If we use the shamrock executable to run this script instead of the python interpreter,
53 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
54 if not shamrock.sys.is_initialized():
55     shamrock.change_loglevel(1)
56     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 )

Setup units

61 si = shamrock.UnitSystem()
62 sicte = shamrock.Constants(si)
63 codeu = shamrock.UnitSystem(
64     unit_time=sicte.second(),
65     unit_length=sicte.au(),
66     unit_mass=sicte.sol_mass(),
67 )
68 ucte = shamrock.Constants(codeu)
69 G = ucte.G()
70 c = ucte.c()

List parameters

 75 # Resolution
 76 Npart = 100000
 77
 78 # Domain decomposition parameters
 79 scheduler_split_val = int(1.0e7)  # split patches with more than 1e7 particles
 80 scheduler_merge_val = scheduler_split_val // 16
 81
 82 # Disc parameter
 83 center_mass = 1e6  # [sol mass]
 84 disc_mass = 0.001  # [sol mass]
 85 Rg = G * center_mass / (c * c)  # [au]
 86 rin = 4.0 * Rg  # [au]
 87 rout = 10 * rin  # [au]
 88 r0 = rin  # [au]
 89
 90 H_r_0 = 0.01
 91 q = 0.75
 92 p = 3.0 / 2.0
 93
 94 Tin = 2 * np.pi * np.sqrt(rin * rin * rin / (G * center_mass))
 95 if shamrock.sys.world_rank() == 0:
 96     print(" Orbital period : ", Tin, " [seconds]")
 97
 98 # Sink parameters
 99 center_racc = rin / 2.0  # [au]
100 inclination = 30.0 * np.pi / 180.0
101
102
103 # Viscosity parameter
104 alpha_AV = 1.0e-3 / 0.08
105 alpha_u = 1.0
106 beta_AV = 2.0
107
108 # Integrator parameters
109 C_cour = 0.3
110 C_force = 0.25
111
112
113 # Dump and plot frequency and duration of the simulation
114 dump_freq_stop = 1
115 plot_freq_stop = 1
116
117 dt_stop = Tin / 10.0
118 nstop = 10
119
120 # The list of times at which the simulation will pause for analysis / dumping
121 t_stop = [i * dt_stop for i in range(nstop + 1)]
122
123
124 sim_folder = f"_to_trash/black_hole_disc_lense_thirring_{Npart}/"
125
126 dump_folder = sim_folder + "dump/"
127 analysis_folder = sim_folder + "analysis/"
128 plot_folder = analysis_folder + "plots/"
129
130 dump_prefix = dump_folder + "dump_"
131
132
133 # Disc profiles
134 def sigma_profile(r):
135     sigma_0 = 1.0  # We do not care as it will be renormalized
136     return sigma_0 * (r / r0) ** (-p)
137
138
139 def kep_profile(r):
140     return (G * center_mass / r) ** 0.5
141
142
143 def omega_k(r):
144     return kep_profile(r) / r
145
146
147 def cs_profile(r):
148     cs_in = (H_r_0 * r0) * omega_k(r0)
149     return ((r / r0) ** (-q)) * cs_in
Orbital period :  247.58972132551145  [seconds]

Create the dump directory if it does not exist

154 if shamrock.sys.world_rank() == 0:
155     os.makedirs(sim_folder, exist_ok=True)
156     os.makedirs(dump_folder, exist_ok=True)
157     os.makedirs(analysis_folder, exist_ok=True)
158     os.makedirs(plot_folder, exist_ok=True)

Utility functions and quantities deduced from the base one

163 # Deduced quantities
164 pmass = disc_mass / Npart
165
166 bsize = rout * 2
167 bmin = (-bsize, -bsize, -bsize)
168 bmax = (bsize, bsize, bsize)
169
170 cs0 = cs_profile(r0)
171
172
173 def rot_profile(r):
174     return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
175
176
177 def H_profile(r):
178     H = cs_profile(r) / omega_k(r)
179     # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
180     fact = 1.0
181     return fact * H

Start the context The context holds the data of the code We then init the layout of the field (e.g. the list of fields used by the solver)

Attach a SPH model to the context

195 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")

Dump handling

202 def get_vtk_dump_name(idump):
203     return dump_prefix + f"{idump:07}" + ".vtk"
204
205
206 def get_ph_dump_name(idump):
207     return dump_prefix + f"{idump:07}" + ".phdump"
208
209
210 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)

Load the last dump if it exists, setup otherwise

216 def setup_model():
217     global disc_mass
218
219     # Generate the default config
220     cfg = model.gen_default_config()
221     cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
222     cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
223
224     # cfg.add_ext_force_point_mass(center_mass, center_racc)
225
226     cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize)  # kill particles outside the simulation box
227     cfg.add_ext_force_lense_thirring(
228         central_mass=center_mass,
229         Racc=rin,
230         a_spin=0.9,
231         dir_spin=(np.sin(inclination), np.cos(inclination), 0.0),
232     )
233
234     cfg.set_units(codeu)
235     cfg.set_particle_mass(pmass)
236     # Set the CFL
237     cfg.set_cfl_cour(C_cour)
238     cfg.set_cfl_force(C_force)
239
240     # On a chaotic disc, we disable to two stage search to avoid giant leaves
241     cfg.set_tree_reduction_level(6)
242     cfg.set_two_stage_search(False)
243
244     # Enable this to debug the neighbor counts
245     # cfg.set_show_neigh_stats(True)
246
247     # Standard way to set the smoothing length (e.g. Price et al. 2018)
248     cfg.set_smoothing_length_density_based()
249
250     # Standard density based smoothing lenght but with a neighbor count limit
251     # Use it if you have large slowdowns due to giant particles
252     # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
253     # cfg.set_smoothing_length_density_based_neigh_lim(500)
254
255     cfg.set_save_dt_to_fields(True)
256
257     # Set the solver config to be the one stored in cfg
258     model.set_solver_config(cfg)
259
260     # Print the solver config
261     model.get_current_config().print_status()
262
263     # Init the scheduler & fields
264     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
265
266     # Set the simulation box size
267     model.resize_simulation_box(bmin, bmax)
268
269     # Create the setup
270
271     setup = model.get_setup()
272     gen_disc = setup.make_generator_disc_mc(
273         part_mass=pmass,
274         disc_mass=disc_mass,
275         r_in=rin,
276         r_out=rout,
277         sigma_profile=sigma_profile,
278         H_profile=H_profile,
279         rot_profile=rot_profile,
280         cs_profile=cs_profile,
281         random_seed=666,
282         init_h_factor=0.03,
283     )
284
285     # Print the dot graph of the setup
286     print(gen_disc.get_dot())
287
288     # Apply the setup
289     setup.apply_setup(gen_disc)
290
291     # correct the momentum and barycenter of the disc to 0
292     analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
293     total_momentum = analysis_momentum.get_total_momentum()
294
295     if shamrock.sys.world_rank() == 0:
296         print(f"disc momentum = {total_momentum}")
297
298     model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
299
300     # Correct the barycenter
301     analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
302     barycenter, disc_mass = analysis_barycenter.get_barycenter()
303
304     if shamrock.sys.world_rank() == 0:
305         print(f"disc barycenter = {barycenter}")
306
307     model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
308
309     total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
310
311     if shamrock.sys.world_rank() == 0:
312         print(f"disc momentum after correction = {total_momentum}")
313
314     barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
315
316     if shamrock.sys.world_rank() == 0:
317         print(f"disc barycenter after correction = {barycenter}")
318
319     if not np.allclose(total_momentum, 0.0):
320         raise RuntimeError("disc momentum is not 0")
321     if not np.allclose(barycenter, 0.0):
322         raise RuntimeError("disc barycenter is not 0")
323
324     # Run a single step to init the integrator and smoothing length of the particles
325     # Here the htolerance is the maximum factor of evolution of the smoothing length in each
326     # Smoothing length iterations, increasing it affect the performance negatively but increse the
327     # convergence rate of the smoothing length
328     # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
329     # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
330     # more slowly at the first timestep
331
332     model.change_htolerances(coarse=1.3, fine=1.1)
333     model.timestep()
334     model.change_htolerances(coarse=1.1, fine=1.1)
335
336
337 dump_helper.load_last_dump_or(setup_model)
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_AV": 0.0125,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "type": "constant_disc"
        },
        "boundary_config": {
            "bc_type": "free"
        },
        "cfl_config": {
            "cfl_cour": 0.3,
            "cfl_force": 0.25,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs0": 1.0019944020500018e-05,
            "eos_type": "locally_isothermal_lp07",
            "q": 0.75,
            "r0": 0.03948371767577914
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": [
                {
                    "Racc": 0.03948371767577914,
                    "a_spin": 0.9,
                    "central_mass": 1000000.0,
                    "dir_spin": [
                        0.49999999999999994,
                        0.8660254037844387,
                        0.0
                    ],
                    "force_type": "lense_thirring"
                }
            ]
        },
        "gpart_mass": 1e-08,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M4<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [
            {
                "center": [
                    0.0,
                    0.0,
                    0.0
                ],
                "radius": 0.7896743535155828,
                "type": "sphere"
            }
        ],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": true,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 6,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": {
            "unit_current": 1.0,
            "unit_length": 149597870700.0,
            "unit_lumint": 1.0,
            "unit_mass": 1.98847e+30,
            "unit_qte": 1.0,
            "unit_temperature": 1.0,
            "unit_time": 1.0
        },
        "use_two_stage_search": false
    }
]
------------------------------------
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}

SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 ) rate = 2.662387e+05 N.s^-1
SPH setup: the generation step took : 0.37921553100000005 s
SPH setup: final particle count = 100000 begining injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.14 us   (84.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (0.1%)
   patch tree reduce : 1443.00 ns (0.1%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.1%)
   LB compute        : 1505.74 us (99.1%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (0.3%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (0.1%)
   patch tree reduce : 712.00 ns  (0.1%)
   gen split merge   : 451.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.0%)
   LB compute        : 1256.68 us (99.4%)
   LB move op cnt    : 0
   LB apply          : 1904.00 ns (0.2%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (0.1%)
   patch tree reduce : 401.00 ns  (0.0%)
   gen split merge   : 401.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.0%)
   LB compute        : 1193.22 us (99.3%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.2%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected       100000 / 100000 => 100.0% | ranks with patchs = 1 / 1  <- global loop ->
SPH setup: the injection step took : 0.021119475000000002 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   0.3% 0.0% |     2.00 GB |     2.00 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.43129845 s
disc momentum = (-9.307153362617869e-10, 3.304700140606411e-11, 0.0)
disc barycenter = (-0.0006004574646296655, 0.0006182195209169494, -1.1798577415312227e-06)
disc momentum after correction = (-8.52771512753887e-23, 1.3277541301183208e-22, 0.0)
disc barycenter after correction = (-1.1372740805869067e-16, 4.552802091491864e-18, 4.570172884355478e-20)
---------------- t = 0, dt = 0 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (0.4%)
   patch tree reduce : 1462.00 ns (0.1%)
   gen split merge   : 981.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.1%)
   LB compute        : 1829.98 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.1%)
central potential accretion : +=  6.3e-07
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0065693011294521006 unconverged cnt = 99936
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008540091468287731 unconverged cnt = 99933
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008554580517302433 unconverged cnt = 99926
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008554580517302431 unconverged cnt = 99915
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008554580517302431 unconverged cnt = 99889
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008801544387443572 unconverged cnt = 99824
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008801544387443573 unconverged cnt = 99591
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.009558608691801695 unconverged cnt = 98964
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010612616124646162 unconverged cnt = 96922
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010612616124661666 unconverged cnt = 87049
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010612616124661666 unconverged cnt = 45089
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010612616124661666 unconverged cnt = 3023
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010612616124661666 unconverged cnt = 14
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.48037453836685e-10,3.4164855531118977e-10,0)
    sum a = (-1.2215184055212008e-11,1.2738524452909865e-12,2.98736320357203e-13)
    sum e = 1.2794654215224175e-10
    sum de = 9.773894829384592e-17
Info: CFL hydro = 0.015168073714520974 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.015168073714520974 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.2901e+04 | 99937 |      1 | 4.364e+00 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

On the fly analysis

342 def save_rho_integ(ext, arr_rho, iplot):
343     if shamrock.sys.world_rank() == 0:
344         metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
345         np.save(plot_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
346
347         with open(plot_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
348             json.dump(metadata, fp)
349
350
351 def save_vxyz_integ(ext, arr_vxyz, iplot):
352     if shamrock.sys.world_rank() == 0:
353         metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
354         np.save(plot_folder + f"vxyz_integ_{iplot:07}.npy", arr_vxyz)
355
356         with open(plot_folder + f"vxyz_integ_{iplot:07}.json", "w") as fp:
357             json.dump(metadata, fp)
358
359
360 def save_analysis_data(filename, key, value, ianalysis):
361     """Helper to save analysis data to a JSON file."""
362     if shamrock.sys.world_rank() == 0:
363         filepath = os.path.join(analysis_folder, filename)
364         try:
365             with open(filepath, "r") as fp:
366                 data = json.load(fp)
367         except (FileNotFoundError, json.JSONDecodeError):
368             data = {key: []}
369         data[key] = data[key][:ianalysis]
370         data[key].append({"t": model.get_time(), key: value})
371         with open(filepath, "w") as fp:
372             json.dump(data, fp, indent=4)
373
374
375 from shamrock.utils.analysis import (
376     ColumnAverageVzPlot,
377     ColumnDensityPlot,
378     PerfHistory,
379     SliceDensityPlot,
380     SliceDtPart,
381 )
382
383 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
384
385 column_density_plot = ColumnDensityPlot(
386     model,
387     ext_r=rout * 1.5,
388     nx=1024,
389     ny=1024,
390     ex=(1, 0, 0),
391     ey=(0, 1, 0),
392     center=(0, 0, 0),
393     analysis_folder=analysis_folder,
394     analysis_prefix="rho_integ_normal",
395 )
396
397 column_density_plot_hollywood = ColumnDensityPlot(
398     model,
399     ext_r=rout * 1.5,
400     nx=1024,
401     ny=1024,
402     ex=(1, 0, 0),
403     ey=(0, 1, 0),
404     center=(0, 0, 0),
405     analysis_folder=analysis_folder,
406     analysis_prefix="rho_integ_hollywood",
407 )
408
409 vertical_density_plot = SliceDensityPlot(
410     model,
411     ext_r=rout * 1.1 / (16.0 / 9.0),  # aspect ratio of 16:9
412     nx=1920,
413     ny=1080,
414     ex=(1, 0, 0),
415     ey=(0, 0, 1),
416     center=(0, 0, 0),
417     analysis_folder=analysis_folder,
418     analysis_prefix="rho_slice",
419 )
420
421
422 dt_part_slice_plot = SliceDtPart(
423     model,
424     ext_r=rout * 0.5 / (16.0 / 9.0),  # aspect ratio of 16:9
425     nx=1920,
426     ny=1080,
427     ex=(1, 0, 0),
428     ey=(0, 0, 1),
429     center=((rin + rout) / 2, 0, 0),
430     analysis_folder=analysis_folder,
431     analysis_prefix="dt_part_slice",
432 )
433
434
435 column_average_vz_plot = ColumnAverageVzPlot(
436     model,
437     ext_r=rout * 1.5,
438     nx=1024,
439     ny=1024,
440     ex=(1, 0, 0),
441     ey=(0, 1, 0),
442     center=(0, 0, 0),
443     analysis_folder=analysis_folder,
444     analysis_prefix="column_average_vz",
445 )
446
447
448 def analysis(ianalysis):
449     ext = rout * 1.5
450     nx = 1024
451     ny = 1024
452
453     column_density_plot.analysis_save(ianalysis)
454     column_density_plot_hollywood.analysis_save(ianalysis)
455     vertical_density_plot.analysis_save(ianalysis)
456     dt_part_slice_plot.analysis_save(ianalysis)
457     column_average_vz_plot.analysis_save(ianalysis)
458
459     barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
460
461     total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
462
463     potential_energy = shamrock.model_sph.analysisEnergyPotential(
464         model=model
465     ).get_potential_energy()
466
467     kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
468
469     save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
470     save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
471     save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
472     save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
473     save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
474
475     perf_analysis.analysis_save(ianalysis)

Evolve the simulation

480 model.solver_logs_reset_cumulated_step_time()
481 model.solver_logs_reset_step_count()
482
483 t_start = model.get_time()
484
485 idump = 0
486 iplot = 0
487 istop = 0
488 for ttarg in t_stop:
489     if ttarg >= t_start:
490         model.evolve_until(ttarg)
491
492         if istop % dump_freq_stop == 0:
493             model.do_vtk_dump(get_vtk_dump_name(idump), True)
494             dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
495
496             # dump = model.make_phantom_dump()
497             # dump.save_dump(get_ph_dump_name(idump))
498
499         if istop % plot_freq_stop == 0:
500             analysis(iplot)
501
502     if istop % dump_freq_stop == 0:
503         idump += 1
504
505     if istop % plot_freq_stop == 0:
506         iplot += 1
507
508     istop += 1
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 15.261947996000002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
              - took 33.84 ms, bandwidth = 157.73 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (32.9%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
              - took 13.65 ms, bandwidth = 894.32 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 746.90 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000000.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 746.76 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000000.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 321.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 320.20 ms                                   [sph::CartesianRender][rank=0]
/usr/local/lib/python3.10/dist-packages/shamrock/utils/analysis/StandardPlotHelper.py:59: RuntimeWarning: invalid value encountered in divide
  ret = field / normalization
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000000.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 468.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 466.12 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000000.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.022706207000000003 s
Info: compute_column_integ took 761.53 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 752.48 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000000.json
Warning: step count is 0, skipping save of perf history
---------------- t = 0, dt = 0.015168073714520974 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99937 min = 99937                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99937 min = 99937                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99937
    max = 99937
    avg = 99937
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (0.1%)
   patch tree reduce : 1654.00 ns (0.0%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.0%)
   LB compute        : 5.73 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.478521730244561e-10,3.41667877199299e-10,4.531254528384214e-15)
    sum a = (-1.2220481889570355e-11,1.2658497411658691e-12,3.0470649101024924e-13)
    sum e = 1.2794654644004925e-10
    sum de = 9.803644478106207e-17
Info: CFL hydro = 0.5157187331159753 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.5157187331159753 cfl multiplier : 0.34                        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8181e+05 | 99937 |      1 | 5.497e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3393024171593 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.015168073714520974, dt = 0.5157187331159753 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99937 min = 99937                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99937 min = 99937                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99937
    max = 99937
    avg = 99937
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.6%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 410.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4154980140723405e-10,3.423206389310745e-10,1.6171937803873114e-13)
    sum a = (-1.2396913900990976e-11,9.904508414801673e-13,5.084886241385362e-13)
    sum e = 1.2794983717466656e-10
    sum de = 1.0774476280674518e-16
Info: CFL hydro = 0.8496983445513999 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8496983445513999 cfl multiplier : 0.56                        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8880e+05 | 99937 |      1 | 5.293e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3507.5261509088273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5308868068304963, dt = 0.8496983445513999 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99937 min = 99937                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99937 min = 99937                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99937
    max = 99937
    avg = 99937
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.5%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 388.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.397776438386166e-10,3.3838887997362083e-10,4.908859063544068e-13)
    sum a = (-1.2546444515712495e-11,7.478768075589297e-13,7.371097880653559e-13)
    sum e = 1.2795050719555384e-10
    sum de = 1.175009008562791e-16
Info: CFL hydro = 1.0730433663314185 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.0730433663314185 cfl multiplier : 0.7066666666666667          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8832e+05 | 99936 |      1 | 5.307e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5764.228504021216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3805851513818963, dt = 1.0730433663314185 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99936 min = 99936                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99936 min = 99936                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99936
    max = 99936
    avg = 99936
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.0%)
   patch tree reduce : 1573.00 ns (0.2%)
   gen split merge   : 1373.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 612.79 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2619664396703884e-10,3.389913799817497e-10,1.4267976508952406e-12)
    sum a = (-1.2869345151308501e-11,1.3692231015690641e-13,1.167204291489195e-12)
    sum e = 1.2795587578055205e-10
    sum de = 1.3662387564432974e-16
Info: CFL hydro = 1.223043205925452 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.223043205925452 cfl multiplier : 0.8044444444444444           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7354e+05 | 99936 |      1 | 5.759e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6708.071139718655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.453628517713315, dt = 1.223043205925452 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99936 min = 99936                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99936 min = 99936                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99936
    max = 99936
    avg = 99936
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (0.2%)
   patch tree reduce : 1723.00 ns (0.1%)
   gen split merge   : 1352.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.0%)
   LB compute        : 3.13 ms    (99.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.1%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1966473579559065e-10,3.354682680593522e-10,2.666217137953847e-12)
    sum a = (-1.310811442977571e-11,-3.5318142480938054e-13,1.5442356138574094e-12)
    sum e = 1.2795528268751318e-10
    sum de = 1.530184357380298e-16
Info: CFL hydro = 1.3245092407491843 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3245092407491843 cfl multiplier : 0.8696296296296296          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8090e+05 | 99935 |      1 | 5.524e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7969.938495513162 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.676671723638767, dt = 1.3245092407491843 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99935 min = 99935                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99935 min = 99935                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99935
    max = 99935
    avg = 99935
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 405.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010611665656914734 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.117173547532684e-10,3.3698328978691004e-10,4.563519739642198e-12)
    sum a = (-1.34765547670887e-11,-9.272313138546854e-13,1.9934152114236077e-12)
    sum e = 1.2795372507569817e-10
    sum de = 1.7319563101827875e-16
Info: CFL hydro = 1.3939537488109208 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3939537488109208 cfl multiplier : 0.9130864197530864          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1242e+05 | 99934 |      1 | 8.889e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5363.91048009391 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 5.0011809643879515, dt = 1.3939537488109208 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99934 min = 99934                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99934 min = 99934                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99934
    max = 99934
    avg = 99934
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (0.1%)
   patch tree reduce : 1403.00 ns (0.0%)
   gen split merge   : 982.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 5.59 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.1%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01061139788544668 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1097886077808805e-10,3.2995675078986325e-10,6.327011395008131e-12)
    sum a = (-1.3615722361658972e-11,-1.3597280820425897e-12,2.343620068368051e-12)
    sum e = 1.2794634322945336e-10
    sum de = 1.883986976171761e-16
Info: CFL hydro = 1.442347038717024 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.442347038717024 cfl multiplier : 0.9420576131687243           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1082e+05 | 99932 |      1 | 9.018e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5564.900308938858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.395134713198872, dt = 1.442347038717024 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99932 min = 99932                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99932 min = 99932                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99932
    max = 99932
    avg = 99932
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (0.1%)
   patch tree reduce : 1894.00 ns (0.0%)
   gen split merge   : 1142.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 9.40 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.0%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010611119510465127 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1549398919783095e-10,3.332728887231634e-10,8.31152901081266e-12)
    sum a = (-1.4001985435411806e-11,-1.6930303038072055e-12,2.707371598618094e-12)
    sum e = 1.279334760922598e-10
    sum de = 2.033818305635123e-16
Info: CFL hydro = 1.4769780485630863 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4769780485630863 cfl multiplier : 0.9613717421124829          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1190e+05 | 99929 |      1 | 8.930e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5814.5735027472565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.837481751915896, dt = 1.4769780485630863 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99929 min = 99929                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99929 min = 99929                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99929
    max = 99929
    avg = 99929
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (0.1%)
   patch tree reduce : 1462.00 ns (0.0%)
   gen split merge   : 1192.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.0%)
   LB compute        : 5.73 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.5%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0339401849113203e-10,3.3466663660719947e-10,1.2042801252487496e-11)
    sum a = (-1.4303328136039167e-11,-2.489390292785048e-12,3.2288309078373378e-12)
    sum e = 1.2793012111333e-10
    sum de = 2.2963225746299107e-16
Info: CFL hydro = 1.5026775208521517 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5026775208521517 cfl multiplier : 0.9742478280749886          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8207e+05 | 99928 |      1 | 5.488e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9687.817934901836 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.314459800478982, dt = 1.5026775208521517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99928 min = 99928                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99928 min = 99928                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99928
    max = 99928
    avg = 99928
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (0.1%)
   patch tree reduce : 1452.00 ns (0.0%)
   gen split merge   : 952.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 8.98 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.5%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.012500074356831e-10,3.264876080624027e-10,1.4953044251928958e-11)
    sum a = (-1.4334896196094294e-11,-3.0555427680613563e-12,3.6006877234121618e-12)
    sum e = 1.2792145295548736e-10
    sum de = 2.48384295432536e-16
Info: CFL hydro = 1.5226359933030948 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5226359933030948 cfl multiplier : 0.9828318853833258          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8110e+05 | 99926 |      1 | 5.518e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9803.908076861035 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.817137321331133, dt = 1.5226359933030948 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99926 min = 99926                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99926 min = 99926                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99926
    max = 99926
    avg = 99926
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (0.1%)
   patch tree reduce : 1664.00 ns (0.0%)
   gen split merge   : 1203.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.0%)
   LB compute        : 6.82 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.6%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01061024201962138 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.067090332148522e-10,3.1599747064933584e-10,1.7081971360404927e-11)
    sum a = (-1.4271822182841472e-11,-3.4464942945887394e-12,3.882565935217032e-12)
    sum e = 1.279075942281386e-10
    sum de = 2.6275903862277565e-16
Info: CFL hydro = 1.538966252020931 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.538966252020931 cfl multiplier : 0.9885545902555505           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1145e+05 | 99923 |      1 | 8.966e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6113.872759017265 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.339773314634227, dt = 1.538966252020931 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99923 min = 99923                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99923 min = 99923                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99923
    max = 99923
    avg = 99923
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (0.1%)
   patch tree reduce : 1843.00 ns (0.0%)
   gen split merge   : 1072.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.0%)
   LB compute        : 6.82 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.9%)
central potential accretion : +=  8e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0106099391140963 unconverged cnt = 9
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5505081941570496e-10,3.3584480601157323e-10,1.4467991494613067e-11)
    sum a = (-1.495369805587031e-11,-2.767408389290213e-12,3.9084865503936334e-12)
    sum e = 1.2786908093742386e-10
    sum de = 2.492229332974778e-16
Info: CFL hydro = 1.5530429962979755 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5530429962979755 cfl multiplier : 0.9923697268370336          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0898e+05 | 99915 |      1 | 9.168e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6042.873974083898 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.878739566655158, dt = 1.5530429962979755 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99915 min = 99915                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99915 min = 99915                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99915
    max = 99915
    avg = 99915
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (0.1%)
   patch tree reduce : 1863.00 ns (0.0%)
   gen split merge   : 982.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.0%)
   LB compute        : 8.98 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5140323702403164e-10,3.453641401522158e-10,1.863221744867066e-11)
    sum a = (-1.532493090890589e-11,-3.439269453193814e-12,4.3731381914722435e-12)
    sum e = 1.2785515939768165e-10
    sum de = 2.71330359959117e-16
Info: CFL hydro = 1.5657156428050691 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5657156428050691 cfl multiplier : 0.9949131512246892          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8105e+05 | 99912 |      1 | 5.519e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10131.196240935036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.431782562953133, dt = 1.5657156428050691 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99912 min = 99912                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99912 min = 99912                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99912
    max = 99912
    avg = 99912
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 400.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.9%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010609320647426526 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6391516006818803e-10,3.386235687805353e-10,1.938735279395527e-11)
    sum a = (-1.5240166816727314e-11,-3.695675486995056e-12,4.582539124727187e-12)
    sum e = 1.2783611331344856e-10
    sum de = 2.8160641826475406e-16
Info: CFL hydro = 1.577523086736144 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.577523086736144 cfl multiplier : 0.9966087674831261           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1246e+05 | 99908 |      1 | 8.884e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6344.8359982151405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.997498205758202, dt = 1.577523086736144 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99908 min = 99908                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99908 min = 99908                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99908
    max = 99908
    avg = 99908
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 543.01 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7497527704849906e-10,3.2811921358432083e-10,2.0065420249962117e-11)
    sum a = (-1.5013670241093594e-11,-3.986964735104528e-12,4.778013442099627e-12)
    sum e = 1.2781698944663394e-10
    sum de = 2.922351720604752e-16
Info: CFL hydro = 1.5888092026933966 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5888092026933966 cfl multiplier : 0.997739178322084           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8133e+05 | 99904 |      1 | 5.510e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10307.71947890109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.575021292494345, dt = 1.5888092026933966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99904 min = 99904                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99904 min = 99904                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99904
    max = 99904
    avg = 99904
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (0.2%)
   patch tree reduce : 1733.00 ns (0.1%)
   gen split merge   : 1252.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.0%)
   LB compute        : 2.37 ms    (99.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.512125864947793e-10,3.208185731494469e-10,2.8081283451666608e-11)
    sum a = (-1.48074266036563e-11,-5.207833347740486e-12,5.273899688827626e-12)
    sum e = 1.2781793042093798e-10
    sum de = 3.3303873072335366e-16
Info: CFL hydro = 1.599798012509777 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.599798012509777 cfl multiplier : 0.998492785548056            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8910e+05 | 99904 |      1 | 5.283e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10826.138627428638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.163830495187742, dt = 1.599798012509777 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99904 min = 99904                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99904 min = 99904                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99904
    max = 99904
    avg = 99904
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 429.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4745969178552206e-10,3.201899559327194e-10,3.2904171468685635e-11)
    sum a = (-1.4729034458878947e-11,-5.89591516435255e-12,5.603750644712121e-12)
    sum e = 1.2780399500365373e-10
    sum de = 3.53984465695093e-16
Info: CFL hydro = 1.610577951788664 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.610577951788664 cfl multiplier : 0.9989951903653708           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8276e+05 | 99901 |      1 | 5.466e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10536.04324254747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.76362850769752, dt = 1.610577951788664 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99901 min = 99901                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99901 min = 99901                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99901
    max = 99901
    avg = 99901
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.6%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 405.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.0%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010608036907960739 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.436057609916083e-10,3.41141949395751e-10,3.9168179998781364e-11)
    sum a = (-1.5148847996470477e-11,-6.593981203348433e-12,6.01729181044987e-12)
    sum e = 1.2778533911396156e-10
    sum de = 3.712770334979904e-16
Info: CFL hydro = 1.6211317392980413 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6211317392980413 cfl multiplier : 0.9993301269102473          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0842e+05 | 99897 |      1 | 9.214e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6292.564346313287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.37420645948618, dt = 1.3847656730649618 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99897 min = 99897                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99897 min = 99897                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99897
    max = 99897
    avg = 99897
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (0.1%)
   patch tree reduce : 1984.00 ns (0.0%)
   gen split merge   : 1092.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.0%)
   LB compute        : 4.63 ms    (99.5%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.2%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010607754731889608 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4420417681516477e-10,3.4714541341651593e-10,4.341060726595617e-11)
    sum a = (-1.5182045490213194e-11,-7.0520065970378606e-12,6.2602390919548085e-12)
    sum e = 1.2775293302721254e-10
    sum de = 3.7500879238213873e-16
Info: CFL hydro = 1.6300056949728805 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6300056949728805 cfl multiplier : 0.9995534179401648          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0999e+05 | 99892 |      1 | 9.082e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5488.970729609382 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 33.479517891 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
              - took 8.89 ms, bandwidth = 599.92 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.00 us    (56.6%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
              - took 11.59 ms, bandwidth = 1.03 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 776.66 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000001.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 748.51 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000001.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 324.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 324.72 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000001.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 476.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 475.42 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000001.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.023056945000000002 s
Info: compute_column_integ took 762.36 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.42 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000001.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 24.758972132551143, dt = 1.6300056949728805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99892 min = 99892                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99892 min = 99892                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99892
    max = 99892
    avg = 99892
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (0.1%)
   patch tree reduce : 1744.00 ns (0.0%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 9.10 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.1%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010607421029968473 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4534865932947274e-10,3.4739276870615925e-10,4.754140613433396e-11)
    sum a = (-1.502997638000756e-11,-7.560282687630232e-12,6.469867056727226e-12)
    sum e = 1.2773752477746857e-10
    sum de = 3.7671557704483144e-16
Info: CFL hydro = 1.6400474445508386 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6400474445508386 cfl multiplier : 0.9997022786267765          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0875e+05 | 99887 |      1 | 9.185e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6388.579447189932 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.388977827524023, dt = 1.6400474445508386 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99887 min = 99887                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99887 min = 99887                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99887
    max = 99887
    avg = 99887
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.6%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 407.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.6%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.477973058354034e-10,3.3491109388868285e-10,5.0889029631854564e-11)
    sum a = (-1.4501778237626834e-11,-8.045017110675427e-12,6.575448433090161e-12)
    sum e = 1.2772345056566277e-10
    sum de = 3.973308664103469e-16
Info: CFL hydro = 1.6498433618725805 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6498433618725805 cfl multiplier : 0.9998015190845176          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8498e+05 | 99884 |      1 | 5.400e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10934.01845097982 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.02902527207486, dt = 1.6498433618725805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99884 min = 99884                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99884 min = 99884                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99884
    max = 99884
    avg = 99884
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (0.1%)
   patch tree reduce : 1432.00 ns (0.0%)
   gen split merge   : 1293.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.0%)
   LB compute        : 9.03 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.6%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010606742392115292 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.136123327952166e-10,3.6026328533080205e-10,6.668532314248796e-11)
    sum a = (-1.4901294775648946e-11,-9.548798466989248e-12,7.098372788030602e-12)
    sum e = 1.277000024945574e-10
    sum de = 4.062906741024237e-16
Info: CFL hydro = 1.6546564921125826 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6546564921125826 cfl multiplier : 0.9998676793896785          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0979e+05 | 99879 |      1 | 9.097e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6528.7902033159025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 29.67886863394744, dt = 1.6546564921125826 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99879 min = 99879                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99879 min = 99879                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99879
    max = 99879
    avg = 99879
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (0.1%)
   patch tree reduce : 1594.00 ns (0.0%)
   gen split merge   : 1122.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.0%)
   LB compute        : 5.09 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.8%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01060639848236238 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9385883321915287e-10,3.6417370320453133e-10,7.811209625137548e-11)
    sum a = (-1.4707585901124687e-11,-1.059307728458437e-11,7.371481753743438e-12)
    sum e = 1.2768106513582691e-10
    sum de = 4.164646124212662e-16
Info: CFL hydro = 1.6472343206170614 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6472343206170614 cfl multiplier : 0.9999117862597856          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1129e+05 | 99875 |      1 | 8.975e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6637.405223297975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 31.333525126060024, dt = 1.6472343206170614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99875 min = 99875                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99875 min = 99875                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99875
    max = 99875
    avg = 99875
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (0.1%)
   patch tree reduce : 2.05 us    (0.0%)
   gen split merge   : 1092.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 5.28 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (72.0%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010606054393847927 unconverged cnt = 3
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010606054393847927 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.953426337248259e-10,3.8043868654898577e-10,8.328901432196358e-11)
    sum a = (-1.4828824298704498e-11,-1.1088718295521877e-11,7.517040425920809e-12)
    sum e = 1.2764656327061974e-10
    sum de = 4.084808321643123e-16
Info: CFL hydro = 1.598818912951926 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.598818912951926 cfl multiplier : 0.9999411908398571           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4325e+04 | 99868 |      1 | 1.344e+00 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4413.306925416058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 32.980759446677084, dt = 1.598818912951926 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99868 min = 99868                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99868 min = 99868                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99868
    max = 99868
    avg = 99868
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.2%)
   LB compute        : 439.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.6%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010605718774228794 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.713344791232638e-10,3.7131037360444756e-10,9.635281562628077e-11)
    sum a = (-1.4251107101409884e-11,-1.219684932052834e-11,7.665639653964361e-12)
    sum e = 1.2762036518009438e-10
    sum de = 4.0523064660197555e-16
Info: CFL hydro = 1.5709754897161194 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5709754897161194 cfl multiplier : 0.999960793893238           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0947e+05 | 99863 |      1 | 9.122e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6309.586026294685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 34.57957835962901, dt = 1.5709754897161194 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99863 min = 99863                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99863 min = 99863                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99863
    max = 99863
    avg = 99863
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.3%)
   LB compute        : 457.18 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.2%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01060538741951527 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7218448253795373e-10,3.525398948522194e-10,1.0102250027700238e-10)
    sum a = (-1.3418230277466731e-11,-1.2549089817779607e-11,7.569490688333504e-12)
    sum e = 1.2759975893831575e-10
    sum de = 4.068644948389778e-16
Info: CFL hydro = 1.5331830555669388 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5331830555669388 cfl multiplier : 0.999973862595492           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1150e+05 | 99859 |      1 | 8.956e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6315.044946838927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 36.15055384934513, dt = 1.5331830555669388 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99859 min = 99859                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99859 min = 99859                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99859
    max = 99859
    avg = 99859
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 486.83 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (11.6%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010605062524317175 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6595650249245364e-10,3.480059875734739e-10,1.0801886531655773e-10)
    sum a = (-1.2943739935254092e-11,-1.3091238424882688e-11,7.551397141503964e-12)
    sum e = 1.275838977143664e-10
    sum de = 4.2117443466638623e-16
Info: CFL hydro = 1.6805217671025217 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6805217671025217 cfl multiplier : 0.9999825750636614          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1117e+05 | 99856 |      1 | 8.983e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6144.628742392788 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 37.68373690491207, dt = 1.6805217671025217 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99856 min = 99856                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99856 min = 99856                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99856
    max = 99856
    avg = 99856
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.3%)
   LB compute        : 419.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010604704689100611 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.174031376760329e-10,3.606929203131144e-10,1.3063471347780474e-10)
    sum a = (-1.2892545260141316e-11,-1.487352197243957e-11,7.798836754624593e-12)
    sum e = 1.275605142864094e-10
    sum de = 3.987385045452234e-16
Info: CFL hydro = 1.6861958353792819 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6861958353792819 cfl multiplier : 0.9999883833757742          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1191e+05 | 99850 |      1 | 8.922e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6780.617995807577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 39.364258672014586, dt = 1.6861958353792819 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99850 min = 99850                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99850 min = 99850                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99850
    max = 99850
    avg = 99850
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.2%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 477.61 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.4%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01060434383810902 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8718950344617614e-10,3.7224529269160445e-10,1.4737133033226978e-10)
    sum a = (-1.2727566595694569e-11,-1.606919031084114e-11,7.894355762817182e-12)
    sum e = 1.2752652447388995e-10
    sum de = 3.7550065073582413e-16
Info: CFL hydro = 1.6690158255067513 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6690158255067513 cfl multiplier : 0.9999922555838495          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1128e+05 | 99843 |      1 | 8.972e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6765.732861995744 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 41.050454507393866, dt = 1.6690158255067513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99843 min = 99843                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99843 min = 99843                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99843
    max = 99843
    avg = 99843
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (0.1%)
   patch tree reduce : 1432.00 ns (0.0%)
   gen split merge   : 992.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.0%)
   LB compute        : 8.96 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.0%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010603984878508176 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.826371557692979e-10,3.7419934284335893e-10,1.547026313335433e-10)
    sum a = (-1.2318011314907523e-11,-1.6485009709992698e-11,7.781887961304999e-12)
    sum e = 1.274913623829917e-10
    sum de = 3.519802070941544e-16
Info: CFL hydro = 1.6585880589874986 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6585880589874986 cfl multiplier : 0.9999948370558996          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.0528e+05 | 99836 |      1 | 9.483e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6336.151359413799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 42.71947033290062, dt = 1.6585880589874986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99836 min = 99836                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99836 min = 99836                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99836
    max = 99836
    avg = 99836
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (0.1%)
   patch tree reduce : 1412.00 ns (0.0%)
   gen split merge   : 852.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.0%)
   LB compute        : 6.20 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.6%)
central potential accretion : +=  8e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010603626400156696 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5701677282452336e-10,3.819884732979909e-10,1.6953789066848475e-10)
    sum a = (-1.2061695821131435e-11,-1.742741706781839e-11,7.763952493956862e-12)
    sum e = 1.2745143133913295e-10
    sum de = 3.055096574607779e-16
Info: CFL hydro = 1.6538931532280152 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6538931532280152 cfl multiplier : 0.9999965580372665          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1069e+05 | 99828 |      1 | 9.019e-01 | 0.0% |   0.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6620.5499561549 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 44.37805839188812, dt = 1.6538931532280152 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99828 min = 99828                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99828 min = 99828                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99828
    max = 99828
    avg = 99828
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.2%)
   LB compute        : 436.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1964.00 ns (67.1%)
central potential accretion : +=  1.5e-07
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01060326718625524 unconverged cnt = 17
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3078277574708385e-10,3.963852524807527e-10,1.842024256706548e-10)
    sum a = (-1.1996321355491334e-11,-1.8377952947312165e-11,7.741974165261949e-12)
    sum e = 1.27376354373024e-10
    sum de = 1.9544090726349007e-16
Info: CFL hydro = 1.6542767468802722 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6542767468802722 cfl multiplier : 0.9999977053581777          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1359e+05 | 99813 |      1 | 8.787e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6775.87250809365 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 46.03195154511613, dt = 1.6542767468802722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99813 min = 99813                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99813 min = 99813                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99813
    max = 99813
    avg = 99813
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.1%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1372.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.2%)
   LB compute        : 541.88 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.9%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01060290614012592 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.96607740139831e-11,3.7892203130779857e-10,2.0512686224236323e-10)
    sum a = (-1.1121103618642318e-11,-1.9707361829816744e-11,7.536319578271129e-12)
    sum e = 1.2734151680368472e-10
    sum de = 1.3804053287328602e-16
Info: CFL hydro = 1.6592659299553028 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6592659299553028 cfl multiplier : 0.9999984702387851          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1393e+05 | 99806 |      1 | 8.760e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6798.270347406808 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 47.6862282919964, dt = 1.6592659299553028 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99806 min = 99806                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99806 min = 99806                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99806
    max = 99806
    avg = 99806
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 422.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.3%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010602542248087574 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.167710424462752e-11,3.550098356078259e-10,2.134390652713714e-10)
    sum a = (-1.0041626498802202e-11,-2.0038699529720414e-11,7.122401866944603e-12)
    sum e = 1.2732667334779354e-10
    sum de = 1.3191827165896837e-16
Info: CFL hydro = 1.7540053481494968 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7540053481494968 cfl multiplier : 0.99999898015919            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1466e+05 | 99803 |      1 | 8.705e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6862.350729352084 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 49.345494221951704, dt = 0.1724500431505831 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99803 min = 99803                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99803 min = 99803                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99803
    max = 99803
    avg = 99803
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.0%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1343.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 542.77 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.879714573107376e-11,3.6569659390468933e-10,2.1860666501829544e-10)
    sum a = (-1.0311107259460583e-11,-2.0443158099907456e-11,7.214727403583041e-12)
    sum e = 1.272847995488821e-10
    sum de = 1.1642216174957692e-16
Info: CFL hydro = 1.755446243489959 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.755446243489959 cfl multiplier : 0.9999993201061267           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9159e+05 | 99801 |      1 | 5.209e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1191.8052483400656 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 52.597217742000005 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
              - took 8.64 ms, bandwidth = 617.24 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (57.5%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
              - took 11.35 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 752.06 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000002.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 744.89 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000002.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 315.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 314.97 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000002.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 465.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 473.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000002.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.024229247000000002 s
Info: compute_column_integ took 764.00 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 746.07 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000002.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 49.51794426510229, dt = 1.755446243489959 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99801 min = 99801                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99801 min = 99801                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99801
    max = 99801
    avg = 99801
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 533.18 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0708643092834645e-11,3.2980570175364766e-10,2.312673661500593e-10)
    sum a = (-8.883067542997675e-12,-2.097299824877466e-11,6.680546635394653e-12)
    sum e = 1.2732080742273578e-10
    sum de = 1.2535582633347092e-16
Info: CFL hydro = 1.7268140887492505 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7268140887492505 cfl multiplier : 0.9999995467374179          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8867e+05 | 99801 |      1 | 5.290e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11947.236652449297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 51.27339050859224, dt = 1.7268140887492505 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99801 min = 99801                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99801 min = 99801                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99801
    max = 99801
    avg = 99801
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (0.2%)
   patch tree reduce : 1352.00 ns (0.0%)
   gen split merge   : 1163.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.0%)
   LB compute        : 3.29 ms    (99.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.4%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010601734531104929 unconverged cnt = 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.490205595884169e-11,3.0677112714289685e-10,2.3837915544520837e-10)
    sum a = (-7.838433742973515e-12,-2.1180472592222127e-11,6.17235707412695e-12)
    sum e = 1.2728418569446716e-10
    sum de = 8.367348224090291e-17
Info: CFL hydro = 1.7338846344853123 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7338846344853123 cfl multiplier : 0.9999996978249452          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1402e+05 | 99794 |      1 | 8.753e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7102.487584480954 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 53.000204597341494, dt = 1.7338846344853123 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99794 min = 99794                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99794 min = 99794                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99794
    max = 99794
    avg = 99794
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.2%)
   LB compute        : 423.64 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.13 us    (67.2%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010601348345168184 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0253485458499682e-11,2.892597359233705e-10,2.56658885992277e-10)
    sum a = (-6.924542967839953e-12,-2.2131289124764156e-11,5.7328519591034135e-12)
    sum e = 1.2725442080305803e-10
    sum de = 4.423706559071003e-17
Info: CFL hydro = 1.6737594246559613 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6737594246559613 cfl multiplier : 0.9999997985499635          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1626e+05 | 99788 |      1 | 8.583e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7272.3843089466545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 54.73408923182681, dt = 1.6737594246559613 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99788 min = 99788                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99788 min = 99788                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99788
    max = 99788
    avg = 99788
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.49 us   (4.9%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 420.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.2%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010600973729025914 unconverged cnt = 5
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.219385179970633e-11,2.651773687420655e-10,2.7438767563095476e-10)
    sum a = (-5.8994641405388e-12,-2.299125114758522e-11,5.2245058594095e-12)
    sum e = 1.2722679389097393e-10
    sum de = 8.200124069550719e-18
Info: CFL hydro = 1.622099412431246 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.622099412431246 cfl multiplier : 0.9999998656999756           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1711e+05 | 99783 |      1 | 8.520e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7071.965906583485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 56.40784865648277, dt = 1.622099412431246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99783 min = 99783                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99783 min = 99783                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99783
    max = 99783
    avg = 99783
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (0.1%)
   patch tree reduce : 1634.00 ns (0.0%)
   gen split merge   : 1111.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.0%)
   LB compute        : 9.01 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (68.9%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010600608967979567 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3762373612058544e-11,2.411821592567182e-10,2.830822158483709e-10)
    sum a = (-4.906891744049589e-12,-2.316438206467473e-11,4.656335667389752e-12)
    sum e = 1.2719933894502467e-10
    sum de = -3.8271410605675024e-17
Info: CFL hydro = 1.6457489243166705 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6457489243166705 cfl multiplier : 0.9999999104666504          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1474e+05 | 99778 |      1 | 8.696e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6714.944036636313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 58.02994806891402, dt = 1.6457489243166705 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99778 min = 99778                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99778 min = 99778                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99778
    max = 99778
    avg = 99778
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 405.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.0%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010600237171810906 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.051698778470995e-11,2.0561874399696862e-10,2.8607727301022383e-10)
    sum a = (-3.606366758146926e-12,-2.2866746906074088e-11,3.925225296439872e-12)
    sum e = 1.2717459881816886e-10
    sum de = -8.648730837575338e-17
Info: CFL hydro = 1.593916452900208 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.593916452900208 cfl multiplier : 0.9999999403111003           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1464e+05 | 99773 |      1 | 8.703e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6807.328187328287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 59.67569699323069, dt = 1.593916452900208 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99773 min = 99773                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99773 min = 99773                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99773
    max = 99773
    avg = 99773
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (0.2%)
   patch tree reduce : 1382.00 ns (0.0%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.0%)
   LB compute        : 3.24 ms    (99.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.2%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010599875437122836 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.236735732948399e-11,1.7381540432442149e-10,2.98165778960257e-10)
    sum a = (-2.4623933514770125e-12,-2.3286921966686795e-11,3.2458122839050904e-12)
    sum e = 1.2714215668412008e-10
    sum de = -1.4051266641953267e-16
Info: CFL hydro = 1.6777238519366537 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6777238519366537 cfl multiplier : 0.9999999602074002          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1562e+05 | 99767 |      1 | 8.629e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6649.739556109572 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 61.2696134461309, dt = 1.6777238519366537 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99767 min = 99767                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99767 min = 99767                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99767
    max = 99767
    avg = 99767
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (0.1%)
   patch tree reduce : 1513.00 ns (0.0%)
   gen split merge   : 921.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.0%)
   LB compute        : 7.01 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.8%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010599492931192382 unconverged cnt = 5
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.788290403163815e-11,1.6442939714396588e-10,3.0233030266793435e-10)
    sum a = (-1.8860206812731072e-12,-2.3166270892997582e-11,2.7331447092950953e-12)
    sum e = 1.271093008491085e-10
    sum de = -2.0282769270373667e-16
Info: CFL hydro = 1.6127666975909996 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6127666975909996 cfl multiplier : 0.9999999734716001          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1608e+05 | 99760 |      1 | 8.594e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7027.83079726387 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 62.94733729806755, dt = 1.6127666975909996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99760 min = 99760                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99760 min = 99760                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99760
    max = 99760
    avg = 99760
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.5%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 435.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.4%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.60165964449006e-11,1.3541465540003825e-10,3.155199844482635e-10)
    sum a = (-8.635623528003456e-13,-2.3678838268687612e-11,2.043644761134745e-12)
    sum e = 1.270911623465119e-10
    sum de = -2.3889788852247593e-16
Info: CFL hydro = 1.5576092246017952 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5576092246017952 cfl multiplier : 0.9999999823144             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9385e+05 | 99757 |      1 | 5.146e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11282.091920749857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 64.56010399565855, dt = 1.5576092246017952 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99757 min = 99757                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99757 min = 99757                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99757
    max = 99757
    avg = 99757
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.2%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 628.41 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.7%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010598765212217323 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1809623152898008e-10,1.0642708129617148e-10,3.302039981887986e-10)
    sum a = (1.1354532615489369e-13,-2.42720233892355e-11,1.3548735457032031e-12)
    sum e = 1.2706856910009268e-10
    sum de = -2.831002087991952e-16
Info: CFL hydro = 1.5096345019465027 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5096345019465027 cfl multiplier : 0.9999999882095999          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1733e+05 | 99753 |      1 | 8.502e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6595.715338149414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 66.11771322026034, dt = 1.5096345019465027 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99753 min = 99753                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99753 min = 99753                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99753
    max = 99753
    avg = 99753
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (0.4%)
   patch tree reduce : 1413.00 ns (0.1%)
   gen split merge   : 912.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.1%)
   LB compute        : 1353.15 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.2%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010598416443118252 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.273180386913339e-10,8.396461414392572e-11,3.351206789314718e-10)
    sum a = (9.469802944997563e-13,-2.4163450603627386e-11,7.197360110682339e-13)
    sum e = 1.2705637818031226e-10
    sum de = -2.907064886344289e-16
Info: CFL hydro = 1.4673317140921416 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4673317140921416 cfl multiplier : 0.9999999921397332          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1789e+05 | 99751 |      1 | 8.461e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6423.145034516801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 67.62734772220685, dt = 1.4673317140921416 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99751 min = 99751                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99751 min = 99751                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99751
    max = 99751
    avg = 99751
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (0.9%)
   patch tree reduce : 1493.00 ns (0.2%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 643.77 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.341600041905195e-10,5.123975272951286e-11,3.389982018229218e-10)
    sum a = (1.9911796486946086e-12,-2.397388845206009e-11,-3.041480751905205e-14)
    sum e = 1.270494539573502e-10
    sum de = -2.9771389068407084e-16
Info: CFL hydro = 1.4565392835549251 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4565392835549251 cfl multiplier : 0.9999999947598223          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9689e+05 | 99750 |      1 | 5.066e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10426.463206686594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 69.09467943629899, dt = 1.4565392835549251 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99750 min = 99750                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99750 min = 99750                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99750
    max = 99750
    avg = 99750
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (0.5%)
   patch tree reduce : 1574.00 ns (0.1%)
   gen split merge   : 1283.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.1%)
   LB compute        : 1208.56 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.0%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010597736815838688 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3127063985331033e-10,3.877861184916906e-11,3.383388048032738e-10)
    sum a = (2.506501744385657e-12,-2.3445785792234953e-11,-5.397174542166652e-13)
    sum e = 1.2701293229918114e-10
    sum de = -3.691454279339998e-16
Info: CFL hydro = 1.4134768548802614 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4134768548802614 cfl multiplier : 0.9999999965065482          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1764e+05 | 99743 |      1 | 8.478e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6184.53483433546 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 70.55121871985392, dt = 1.4134768548802614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99743 min = 99743                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99743 min = 99743                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99743
    max = 99743
    avg = 99743
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (0.3%)
   patch tree reduce : 1363.00 ns (0.1%)
   gen split merge   : 921.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.1%)
   LB compute        : 1875.54 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.8%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010597406314493777 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4033120163104902e-10,1.3904200129232924e-11,3.422098501216171e-10)
    sum a = (3.2880922874036315e-12,-2.3269785591958664e-11,-1.184912926610055e-12)
    sum e = 1.2698038553858336e-10
    sum de = -4.1948542182521787e-16
Info: CFL hydro = 1.5378701725366837 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5378701725366837 cfl multiplier : 0.9999999976710322          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1951e+05 | 99737 |      1 | 8.345e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6097.434354065512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 71.96469557473418, dt = 1.5378701725366837 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99737 min = 99737                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99737 min = 99737                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99737
    max = 99737
    avg = 99737
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (0.1%)
   patch tree reduce : 1884.00 ns (0.0%)
   gen split merge   : 1022.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 6.12 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.3%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010597045282245842 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.687623879543812e-10,-8.669186082325108e-12,3.5230427842763957e-10)
    sum a = (3.957173671524962e-12,-2.3602594842836213e-11,-1.82746398226408e-12)
    sum e = 1.2696355876055077e-10
    sum de = -4.7914369729024835e-16
Info: CFL hydro = 1.6806971842629053 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6806971842629053 cfl multiplier : 0.9999999984473549          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1810e+05 | 99733 |      1 | 8.445e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6555.720829972103 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 73.50256574727086, dt = 0.7743506503825586 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99733 min = 99733                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99733 min = 99733                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99733
    max = 99733
    avg = 99733
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (0.1%)
   patch tree reduce : 1462.00 ns (0.0%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.0%)
   LB compute        : 4.89 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010596862924306179 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.651088364978327e-10,-1.973164169037648e-11,3.506585090201359e-10)
    sum a = (4.3222130562954186e-12,-2.3224917318285787e-11,-2.140028576333348e-12)
    sum e = 1.2691755080394083e-10
    sum de = -5.13982343588556e-16
Info: CFL hydro = 1.6467519222379765 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6467519222379765 cfl multiplier : 0.9999999989649032          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1906e+05 | 99728 |      1 | 8.376e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3328.159191507698 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 52                                                      [SPH][rank=0]
Info: time since start : 70.19924776900001 (s)                                        [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
              - took 8.43 ms, bandwidth = 632.14 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (57.7%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
              - took 11.49 ms, bandwidth = 1.03 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 750.24 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000003.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 753.18 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000003.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 317.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 317.87 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000003.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 459.31 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 455.36 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000003.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.02292701 s
Info: compute_column_integ took 782.04 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 745.58 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000003.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 74.27691639765342, dt = 1.6467519222379765 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99728 min = 99728                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99728 min = 99728                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99728
    max = 99728
    avg = 99728
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (0.5%)
   patch tree reduce : 1763.00 ns (0.1%)
   gen split merge   : 1002.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.1%)
   LB compute        : 1414.43 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.4%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010596473845971885 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6724981621754678e-10,-5.62592211016809e-11,3.503503727499518e-10)
    sum a = (5.3460713614709134e-12,-2.2682590867738395e-11,-2.991421726781844e-12)
    sum e = 1.2693570317981726e-10
    sum de = -5.303399602203821e-16
Info: CFL hydro = 1.5748936129684201 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5748936129684201 cfl multiplier : 0.9999999993099354          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1929e+05 | 99727 |      1 | 8.360e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7091.346667094241 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 75.9236683198914, dt = 1.5748936129684201 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99727 min = 99727                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99727 min = 99727                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99727
    max = 99727
    avg = 99727
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (0.1%)
   patch tree reduce : 1543.00 ns (0.0%)
   gen split merge   : 1282.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.0%)
   LB compute        : 6.81 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.8%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7367820475044582e-10,-8.680827360041654e-11,3.5047479955696357e-10)
    sum a = (6.176148310920435e-12,-2.22758356682358e-11,-3.7406471058770804e-12)
    sum e = 1.2691167381234935e-10
    sum de = -5.786886227570888e-16
Info: CFL hydro = 1.629135344736265 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.629135344736265 cfl multiplier : 0.999999999539957            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9943e+05 | 99723 |      1 | 5.000e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11338.347399959337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 77.49856193285983, dt = 1.629135344736265 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99723 min = 99723                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99723 min = 99723                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99723
    max = 99723
    avg = 99723
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (0.1%)
   patch tree reduce : 1383.00 ns (0.0%)
   gen split merge   : 1022.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.0%)
   LB compute        : 8.95 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.3%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7455797105874677e-10,-1.1587295749732279e-10,3.477123098786521e-10)
    sum a = (6.9651930137226705e-12,-2.1688964499950345e-11,-4.483082764110671e-12)
    sum e = 1.2689717584676414e-10
    sum de = -6.078839841149587e-16
Info: CFL hydro = 1.6033967439450607 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6033967439450607 cfl multiplier : 0.9999999996933046          [sph::Model][rank=0]
Info: Timestep 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.0359e+05 | 99720 |      1 | 4.898e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11973.578671016387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 79.1276972775961, dt = 1.6033967439450607 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99720 min = 99720                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99720 min = 99720                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99720
    max = 99720
    avg = 99720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (0.2%)
   patch tree reduce : 1713.00 ns (0.0%)
   gen split merge   : 1082.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.0%)
   LB compute        : 4.08 ms    (99.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.3%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010595328083619734 unconverged cnt = 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.037576500994029e-10,-1.7118117976546651e-10,3.551959476069752e-10)
    sum a = (8.281117556215997e-12,-2.1868749894486253e-11,-5.543516430582075e-12)
    sum e = 1.2685932071157844e-10
    sum de = -6.954213832250578e-16
Info: CFL hydro = 1.5498192198156666 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5498192198156666 cfl multiplier : 0.9999999997955363          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2085e+05 | 99713 |      1 | 8.251e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6995.96705382551 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 80.73109402154115, dt = 1.5498192198156666 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99713 min = 99713                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99713 min = 99713                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99713
    max = 99713
    avg = 99713
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.3%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 466.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010594955560103501 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2486102740611832e-10,-1.9263305454844306e-10,3.5873927442447355e-10)
    sum a = (8.760787808372764e-12,-2.1848241295315683e-11,-6.1352911527807616e-12)
    sum e = 1.2682565823873113e-10
    sum de = -7.794497689163694e-16
Info: CFL hydro = 1.4824550276173014 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4824550276173014 cfl multiplier : 0.9999999998636909          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1983e+05 | 99707 |      1 | 8.321e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6705.5275819948765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 82.28091324135681, dt = 1.4824550276173014 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99707 min = 99707                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99707 min = 99707                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99707
    max = 99707
    avg = 99707
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (0.1%)
   patch tree reduce : 1963.00 ns (0.0%)
   gen split merge   : 942.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.0%)
   LB compute        : 8.97 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.8%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010594597788216123 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0924430899170839e-10,-2.3047818014231593e-10,3.4819874999463854e-10)
    sum a = (9.659952116169163e-12,-2.0750167528387028e-11,-6.941660476334281e-12)
    sum e = 1.2679115773790753e-10
    sum de = -8.402530524110409e-16
Info: CFL hydro = 1.5707368963032153 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5707368963032153 cfl multiplier : 0.9999999999091272          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2177e+05 | 99701 |      1 | 8.188e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6518.246498759153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 83.76336826897412, dt = 1.5707368963032153 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99701 min = 99701                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99701 min = 99701                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99701
    max = 99701
    avg = 99701
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (0.1%)
   patch tree reduce : 1613.00 ns (0.0%)
   gen split merge   : 1182.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.0%)
   LB compute        : 9.00 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.2%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010594217172554831 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0188140736730846e-10,-2.5783644750490343e-10,3.401154786953296e-10)
    sum a = (1.0277887506290797e-11,-1.9843289415861558e-11,-7.613817660939422e-12)
    sum e = 1.2678782742138214e-10
    sum de = -8.454551138211222e-16
Info: CFL hydro = 1.5262314534285724 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5262314534285724 cfl multiplier : 0.9999999999394182          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1927e+05 | 99700 |      1 | 8.359e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6764.638426301994 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 85.33410516527734, dt = 1.5262314534285724 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99700 min = 99700                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99700 min = 99700                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99700
    max = 99700
    avg = 99700
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.5%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 1051.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 421.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.6%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010593845824219567 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.898626880229693e-10,-2.9494334220309796e-10,3.29055528580291e-10)
    sum a = (1.1076082973272708e-11,-1.8780830575981783e-11,-8.397099578270494e-12)
    sum e = 1.2674892474032295e-10
    sum de = -9.248560216975724e-16
Info: CFL hydro = 1.486717106421076 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.486717106421076 cfl multiplier : 0.9999999999596122           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2006e+05 | 99693 |      1 | 8.303e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6617.1128701009 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 86.86033661870592, dt = 1.486717106421076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99693 min = 99693                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99693 min = 99693                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99693
    max = 99693
    avg = 99693
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 388.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.3%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.721728088084305e-10,-3.2371908305528024e-10,3.155960501705251e-10)
    sum a = (1.1683846339288749e-11,-1.7577565231960035e-11,-9.0476590559482e-12)
    sum e = 1.267255303134165e-10
    sum de = -9.697215731798784e-16
Info: CFL hydro = 1.6396238583892144 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6396238583892144 cfl multiplier : 0.9999999999730749          [sph::Model][rank=0]
Info: Timestep 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.0051e+05 | 99689 |      1 | 4.972e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10765.01647703829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 88.347053725127, dt = 1.6396238583892144 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99689 min = 99689                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99689 min = 99689                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99689
    max = 99689
    avg = 99689
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 387.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.3%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8413808980030425e-10,-3.64642515208382e-10,3.112947622691024e-10)
    sum a = (1.2457083706257713e-11,-1.714627580849221e-11,-9.870258323942073e-12)
    sum e = 1.2670877520643186e-10
    sum de = -1.012162348943316e-15
Info: CFL hydro = 1.563999110747836 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.563999110747836 cfl multiplier : 0.9999999999820499           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9747e+05 | 99685 |      1 | 5.048e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11692.857148094836 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 89.98667758351621, dt = 1.563999110747836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99685 min = 99685                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99685 min = 99685                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99685
    max = 99685
    avg = 99685
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (0.1%)
   patch tree reduce : 1974.00 ns (0.0%)
   gen split merge   : 992.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.0%)
   LB compute        : 6.12 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.3%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010592695244077781 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4735847404420462e-10,-3.804983396851713e-10,2.895247128186497e-10)
    sum a = (1.2731766675036889e-11,-1.5362709078922167e-11,-1.0321517235384465e-11)
    sum e = 1.2669406550309602e-10
    sum de = -1.0144716912228423e-15
Info: CFL hydro = 1.4997368113115894 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4997368113115894 cfl multiplier : 0.9999999999880332          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1988e+05 | 99683 |      1 | 8.315e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6771.126585011379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 91.55067669426404, dt = 1.4997368113115894 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99683 min = 99683                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99683 min = 99683                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99683
    max = 99683
    avg = 99683
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 408.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01059232435900038 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5542408497948335e-10,-4.046263955014544e-10,2.8359820006763554e-10)
    sum a = (1.3112540229216268e-11,-1.4908075949243717e-11,-1.0829042745588117e-11)
    sum e = 1.2666441587391477e-10
    sum de = -1.076258694267687e-15
Info: CFL hydro = 1.698227392815528 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.698227392815528 cfl multiplier : 0.999999999992022            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1955e+05 | 99678 |      1 | 8.338e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6475.291378467298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 93.05041350557563, dt = 1.698227392815528 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99678 min = 99678                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99678 min = 99678                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99678
    max = 99678
    avg = 99678
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (0.1%)
   patch tree reduce : 1393.00 ns (0.0%)
   gen split merge   : 972.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.0%)
   LB compute        : 9.09 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.7%)
central potential accretion : +=  8e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6652387316146818e-10,-4.222058901085276e-10,2.779737207382446e-10)
    sum a = (1.3277779686477881e-11,-1.4463995249828784e-11,-1.1209891781193968e-11)
    sum e = 1.266287563948022e-10
    sum de = -1.1614154417950714e-15
Info: CFL hydro = 1.6540185261595721 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6540185261595721 cfl multiplier : 0.9999999999946813          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9301e+05 | 99670 |      1 | 5.164e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11838.664807272107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 94.74864089839116, dt = 1.6540185261595721 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99670 min = 99670                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99670 min = 99670                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99670
    max = 99670
    avg = 99670
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1372.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 364.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.709138722017211e-10,-4.5382760045729727e-10,2.683914114632835e-10)
    sum a = (1.3769365132864538e-11,-1.3830218118162412e-11,-1.1790530871788525e-11)
    sum e = 1.2660956709679815e-10
    sum de = -1.190090191931866e-15
Info: CFL hydro = 1.5861746973386364 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5861746973386364 cfl multiplier : 0.9999999999964541          [sph::Model][rank=0]
Info: Timestep 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+05 | 99667 |      1 | 4.963e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11998.607501216839 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 96.40265942455073, dt = 1.5861746973386364 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99667 min = 99667                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99667 min = 99667                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99667
    max = 99667
    avg = 99667
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (0.2%)
   patch tree reduce : 1963.00 ns (0.1%)
   gen split merge   : 1022.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 2.90 ms    (99.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.4%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01059109284164188 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.517175997113409e-10,-4.854673692100708e-10,2.4924421269794934e-10)
    sum a = (1.4243796679776706e-11,-1.252855765282706e-11,-1.2366916300345899e-11)
    sum e = 1.265793145736254e-10
    sum de = -1.214789059597912e-15
Info: CFL hydro = 1.6081832279681756 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6081832279681756 cfl multiplier : 0.999999999997636           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2233e+05 | 99662 |      1 | 8.147e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7008.81315609638 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 97.98883412188937, dt = 1.047054408315205 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99662 min = 99662                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99662 min = 99662                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99662
    max = 99662
    avg = 99662
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.4%)
   LB compute        : 336.01 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.4%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01059082971150886 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7690033465857908e-10,-5.090161668066198e-10,2.507894680057511e-10)
    sum a = (1.457331843253456e-11,-1.2783619474898969e-11,-1.2733538487122557e-11)
    sum e = 1.2653642830600954e-10
    sum de = -1.255263972558367e-15
Info: CFL hydro = 1.5773516300000427 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5773516300000427 cfl multiplier : 0.999999999998424           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2362e+05 | 99657 |      1 | 8.062e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4675.6502552106485 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 86.422176992 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
              - took 8.10 ms, bandwidth = 657.32 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (56.9%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
              - took 11.37 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 749.08 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000004.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 746.20 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000004.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 323.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 320.68 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000004.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 480.97 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 476.16 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000004.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.021738736 s
Info: compute_column_integ took 766.65 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 744.86 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000004.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 99.03588853020457, dt = 1.5773516300000427 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99657 min = 99657                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99657 min = 99657                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99657
    max = 99657
    avg = 99657
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (0.1%)
   patch tree reduce : 1674.00 ns (0.0%)
   gen split merge   : 991.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 5.36 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.4%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010590431978623954 unconverged cnt = 5
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.997429233272166e-10,-5.337966850621101e-10,2.4820151878735144e-10)
    sum a = (1.4821408257189887e-11,-1.2769883116046674e-11,-1.309827237477345e-11)
    sum e = 1.2652409053968666e-10
    sum de = -1.3118522126207732e-15
Info: CFL hydro = 1.6126315656846544 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6126315656846544 cfl multiplier : 0.9999999999989493          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2028e+05 | 99652 |      1 | 8.285e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6853.9544996317645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 100.61324016020461, dt = 1.6126315656846544 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99652 min = 99652                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99652 min = 99652                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99652
    max = 99652
    avg = 99652
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 397.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6682446727185012e-10,-5.491620797838444e-10,2.2387096929602313e-10)
    sum a = (1.4913642304100052e-11,-1.1115965051521505e-11,-1.3365484656197905e-11)
    sum e = 1.2651806725454573e-10
    sum de = -1.2991085238609399e-15
Info: CFL hydro = 1.5704208979555125 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5704208979555125 cfl multiplier : 0.9999999999992996          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9763e+05 | 99651 |      1 | 5.042e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11513.4012016689 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 102.22587172588926, dt = 1.5704208979555125 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99651 min = 99651                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99651 min = 99651                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99651
    max = 99651
    avg = 99651
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 444.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.6%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010589624469125737 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6237974214408905e-10,-5.80167711990707e-10,2.0873401146911337e-10)
    sum a = (1.529303376323339e-11,-1.0288580348331172e-11,-1.3802097445203846e-11)
    sum e = 1.2648864775116837e-10
    sum de = -1.3233194209637741e-15
Info: CFL hydro = 1.521858003474719 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.521858003474719 cfl multiplier : 0.9999999999995332           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2155e+05 | 99646 |      1 | 8.198e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6896.373894717065 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 103.79629262384478, dt = 1.521858003474719 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99646 min = 99646                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99646 min = 99646                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99646
    max = 99646
    avg = 99646
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (0.1%)
   patch tree reduce : 1743.00 ns (0.0%)
   gen split merge   : 1283.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.0%)
   LB compute        : 5.59 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (75.1%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010589236069490502 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4653597689427677e-10,-6.039541186589955e-10,1.8897671369468245e-10)
    sum a = (1.553780668384542e-11,-9.175688044342569e-12,-1.4137324097834763e-11)
    sum e = 1.2646952178870925e-10
    sum de = -1.335470858932863e-15
Info: CFL hydro = 1.5034828390958943 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5034828390958943 cfl multiplier : 0.9999999999996888          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1007e+05 | 99643 |      1 | 9.053e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6052.023560692801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 105.3181506273195, dt = 1.5034828390958943 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99643 min = 99643                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99643 min = 99643                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99643
    max = 99643
    avg = 99643
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (0.1%)
   patch tree reduce : 1453.00 ns (0.0%)
   gen split merge   : 1092.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.0%)
   LB compute        : 4.93 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.6%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5725978662856276e-10,-6.342801106562186e-10,1.7891116445961715e-10)
    sum a = (1.5884393429172625e-11,-8.864409284811717e-12,-1.4496702058936393e-11)
    sum e = 1.2644571805317865e-10
    sum de = -1.364304668347289e-15
Info: CFL hydro = 1.4546192249997754 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4546192249997754 cfl multiplier : 0.9999999999997925          [sph::Model][rank=0]
Info: Timestep 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.0150e+05 | 99639 |      1 | 4.945e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10945.680391995686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 106.82163346641539, dt = 1.4546192249997754 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99639 min = 99639                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99639 min = 99639                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99639
    max = 99639
    avg = 99639
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1663.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 342.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.0%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3768274598796696e-10,-6.35612200793959e-10,1.6185528937968747e-10)
    sum a = (1.564517751669985e-11,-7.798679618941399e-12,-1.4408164166727045e-11)
    sum e = 1.264319357846698e-10
    sum de = -1.3403408911274337e-15
Info: CFL hydro = 1.490985879389937 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.490985879389937 cfl multiplier : 0.9999999999998618           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9788e+05 | 99637 |      1 | 5.035e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10399.801997738254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 108.27625269141517, dt = 1.490985879389937 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99637 min = 99637                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99637 min = 99637                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99637
    max = 99637
    avg = 99637
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1013.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 409.24 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.48 us    (68.7%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010588091954540416 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2884733854981188e-10,-6.58544948046996e-10,1.4456269173728148e-10)
    sum a = (1.582223756937653e-11,-6.977094636745466e-12,-1.4636670967366182e-11)
    sum e = 1.264102301053862e-10
    sum de = -1.339211120997436e-15
Info: CFL hydro = 1.4476892386689242 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4476892386689242 cfl multiplier : 0.999999999999908           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2078e+05 | 99633 |      1 | 8.249e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6507.062171181519 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 109.7672385708051, dt = 1.4476892386689242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99633 min = 99633                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99633 min = 99633                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99633
    max = 99633
    avg = 99633
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 441.20 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (69.1%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010587716882286822 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1400393636463423e-10,-6.883361278742646e-10,1.227714436293415e-10)
    sum a = (1.6129763501542168e-11,-5.962927283878183e-12,-1.4994968743048677e-11)
    sum e = 1.263861886464483e-10
    sum de = -1.3409912078517433e-15
Info: CFL hydro = 1.5298560345340428 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5298560345340428 cfl multiplier : 0.9999999999999387          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2334e+05 | 99629 |      1 | 8.077e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6452.233902044257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 111.21492780947403, dt = 1.5298560345340428 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99629 min = 99629                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99629 min = 99629                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99629
    max = 99629
    avg = 99629
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 541.26 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
central potential accretion : +=  7e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01058731902844002 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.252580239673724e-10,-7.232855557625382e-10,1.1088095881826975e-10)
    sum a = (1.650485254863739e-11,-5.7225226544704755e-12,-1.5341420717486577e-11)
    sum e = 1.2635029616857062e-10
    sum de = -1.3733847613262154e-15
Info: CFL hydro = 1.506212664515971 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.506212664515971 cfl multiplier : 0.9999999999999591           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2204e+05 | 99622 |      1 | 8.163e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6746.615306588285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 112.74478384400808, dt = 1.506212664515971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99622 min = 99622                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99622 min = 99622                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99622
    max = 99622
    avg = 99622
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (0.9%)
   patch tree reduce : 1884.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.2%)
   LB compute        : 608.50 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2849933524578595e-10,-7.471731897386766e-10,9.824290562247433e-11)
    sum a = (1.6660451547043354e-11,-5.3223723885732336e-12,-1.5498676564822884e-11)
    sum e = 1.2632681367465627e-10
    sum de = -1.3605898987794284e-15
Info: CFL hydro = 1.475860029214632 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.475860029214632 cfl multiplier : 0.9999999999999728           [sph::Model][rank=0]
Info: Timestep 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.0019e+05 | 99618 |      1 | 4.976e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10896.913933671656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 114.25099650852405, dt = 1.475860029214632 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99618 min = 99618                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99618 min = 99618                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99618
    max = 99618
    avg = 99618
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.6%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 374.93 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.29 us    (68.5%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010586539087334382 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1566529275219124e-10,-7.510979593221583e-10,8.141021232482316e-11)
    sum a = (1.6421617654149938e-11,-4.55281103486959e-12,-1.5329416004938678e-11)
    sum e = 1.2630821514922631e-10
    sum de = -1.3491995196027937e-15
Info: CFL hydro = 1.4586783034649196 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4586783034649196 cfl multiplier : 0.9999999999999819          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2419e+05 | 99615 |      1 | 8.021e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6623.880561429206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 115.72685653773868, dt = 1.4586783034649196 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99615 min = 99615                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99615 min = 99615                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99615
    max = 99615
    avg = 99615
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.6%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 374.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0047533203354961e-10,-7.606569204367543e-10,6.27673402679114e-11)
    sum a = (1.6306452443633212e-11,-3.720661269157584e-12,-1.5250027252445544e-11)
    sum e = 1.26300612750112e-10
    sum de = -1.3071390721400686e-15
Info: CFL hydro = 1.4297304863275382 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4297304863275382 cfl multiplier : 0.9999999999999879          [sph::Model][rank=0]
Info: Timestep 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.0681e+05 | 99614 |      1 | 4.817e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10902.173129188428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 117.1855348412036, dt = 1.4297304863275382 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99614 min = 99614                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99614 min = 99614                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99614
    max = 99614
    avg = 99614
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (0.1%)
   patch tree reduce : 1553.00 ns (0.0%)
   gen split merge   : 922.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.0%)
   LB compute        : 5.94 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.3%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010585778048005971 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.846290146222464e-11,-7.873179547386231e-10,4.6207317469395636e-11)
    sum a = (1.6538699519367507e-11,-3.240480063932759e-12,-1.5418229425126266e-11)
    sum e = 1.2627159226169131e-10
    sum de = -1.3150688399511503e-15
Info: CFL hydro = 1.3933573025401842 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3933573025401842 cfl multiplier : 0.999999999999992           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2124e+05 | 99609 |      1 | 8.216e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6264.80232142063 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 118.61526532753115, dt = 1.3933573025401842 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99609 min = 99609                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99609 min = 99609                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99609
    max = 99609
    avg = 99609
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (0.1%)
   patch tree reduce : 1373.00 ns (0.0%)
   gen split merge   : 1052.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.0%)
   LB compute        : 6.41 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.7%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01058540894954107 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0970560672378106e-10,-8.056542369906755e-10,3.9096605515984317e-11)
    sum a = (1.6596794280649138e-11,-3.2561602274374107e-12,-1.540747668655647e-11)
    sum e = 1.262433124503809e-10
    sum de = -1.3081591883552768e-15
Info: CFL hydro = 1.4254533798410813 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4254533798410813 cfl multiplier : 0.9999999999999947          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.1926e+05 | 99604 |      1 | 8.352e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6005.7483974726465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 120.00862263007133, dt = 1.4254533798410813 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99604 min = 99604                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99604 min = 99604                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99604
    max = 99604
    avg = 99604
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (0.1%)
   patch tree reduce : 1473.00 ns (0.0%)
   gen split merge   : 1022.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.0%)
   LB compute        : 5.27 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (76.8%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.769937765236304e-11,-8.075918565993812e-10,6.659714027201902e-12)
    sum a = (1.631221900541391e-11,-1.685669925334021e-12,-1.5241809639029792e-11)
    sum e = 1.2622741234391137e-10
    sum de = -1.276918928090193e-15
Info: CFL hydro = 1.3910696064208246 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3910696064208246 cfl multiplier : 0.9999999999999964          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9421e+05 | 99601 |      1 | 5.129e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10005.918241311225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 121.43407600991242, dt = 1.3910696064208246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99601 min = 99601                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99601 min = 99601                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99601
    max = 99601
    avg = 99601
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (0.1%)
   patch tree reduce : 1572.00 ns (0.0%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.0%)
   LB compute        : 8.95 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.0%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010584658907292278 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.3980435795579964e-11,-8.090068557953962e-10,-8.958688556359926e-12)
    sum a = (1.6047642088871016e-11,-1.0576119216151827e-12,-1.4963749671306897e-11)
    sum e = 1.2620928208526822e-10
    sum de = -1.2510550324761227e-15
Info: CFL hydro = 1.3509556455881326 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3509556455881326 cfl multiplier : 0.9999999999999977          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2304e+05 | 99598 |      1 | 8.095e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6186.579806959125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 122.82514561633324, dt = 0.9697150464224791 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99598 min = 99598                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99598 min = 99598                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99598
    max = 99598
    avg = 99598
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (0.1%)
   patch tree reduce : 1513.00 ns (0.0%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.0%)
   LB compute        : 9.22 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.859804778273775e-11,-8.093953724221317e-10,-2.329850595325687e-11)
    sum a = (1.58564578083745e-11,-4.500472870601771e-13,-1.477258722121923e-11)
    sum e = 1.2619719545874706e-10
    sum de = -1.2021737306687141e-15
Info: CFL hydro = 1.327065457555391 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.327065457555391 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    | 2.0504e+05 | 99598 |      1 | 4.858e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7186.716486154662 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 85                                                      [SPH][rank=0]
Info: time since start : 103.150505831 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
              - took 14.07 ms, bandwidth = 378.06 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (57.8%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
              - took 11.42 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 745.04 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000005.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.52 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000005.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 321.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 318.02 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000005.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 477.32 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 468.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000005.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.019366994000000002 s
Info: compute_column_integ took 757.98 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 744.11 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000005.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 123.79486066275572, dt = 1.327065457555391 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99598 min = 99598                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99598 min = 99598                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99598
    max = 99598
    avg = 99598
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.7%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 400.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.9%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.439394809025315e-11,-8.156873749494116e-10,-3.4422614959761605e-11)
    sum a = (1.5702756866297246e-11,-1.6431804261577726e-13,-1.4543256964637808e-11)
    sum e = 1.2619438808011196e-10
    sum de = -1.1653009040204117e-15
Info: CFL hydro = 1.2969472015049395 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2969472015049395 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    | 2.0297e+05 | 99596 |      1 | 4.907e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9735.903210020775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 125.12192612031112, dt = 1.2969472015049395 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99596 min = 99596                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99596 min = 99596                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99596
    max = 99596
    avg = 99596
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (0.2%)
   patch tree reduce : 1423.00 ns (0.0%)
   gen split merge   : 1053.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.0%)
   LB compute        : 3.78 ms    (99.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.646853616530833e-12,-8.19574609391897e-10,-5.92928989021726e-11)
    sum a = (1.5501491444344338e-11,8.546816404780542e-13,-1.435570960952099e-11)
    sum e = 1.261819077322599e-10
    sum de = -1.1203820878248664e-15
Info: CFL hydro = 1.4152710195824771 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4152710195824771 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    | 2.0165e+05 | 99594 |      1 | 4.939e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9453.418084624462 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 126.41887332181605, dt = 1.4152710195824771 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99594 min = 99594                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99594 min = 99594                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99594
    max = 99594
    avg = 99594
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 432.09 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.9%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010583311850004324 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6676463701516117e-11,-8.161007483904931e-10,-7.953719771867802e-11)
    sum a = (1.5144187556129577e-11,1.6581940408938515e-12,-1.3967181310347748e-11)
    sum e = 1.261635137202919e-10
    sum de = -1.0902972007751293e-15
Info: CFL hydro = 1.42482514195023 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 1.42482514195023 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2287e+05 | 99590 |      1 | 8.105e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6286.101993940245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 127.83414434139853, dt = 1.42482514195023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99590 min = 99590                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99590 min = 99590                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99590
    max = 99590
    avg = 99590
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 375.27 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.31 us    (66.8%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010582925574878742 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5460929502200432e-11,-8.280816959897657e-10,-9.716865526995683e-11)
    sum a = (1.5097289150605508e-11,2.0774888152685032e-12,-1.3814371475192938e-11)
    sum e = 1.2614715041760557e-10
    sum de = -1.0461399491497816e-15
Info: CFL hydro = 1.3713659174093162 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3713659174093162 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2272e+05 | 99587 |      1 | 8.115e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6321.109094889571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 129.25896948334875, dt = 1.3713659174093162 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99587 min = 99587                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99587 min = 99587                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99587
    max = 99587
    avg = 99587
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 517.96 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.1%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010582552487683588 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.223702786841828e-11,-8.370433697182987e-10,-1.1134996153521362e-10)
    sum a = (1.501395945012714e-11,2.3662377588268925e-12,-1.3591130293109729e-11)
    sum e = 1.2613368000067786e-10
    sum de = -9.917695526735628e-16
Info: CFL hydro = 1.3806104673635047 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3806104673635047 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2103e+05 | 99585 |      1 | 8.228e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6000.2453015670235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 130.63033540075807, dt = 1.3806104673635047 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99585 min = 99585                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99585 min = 99585                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99585
    max = 99585
    avg = 99585
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 435.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.0%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010582175588138848 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.501711460177586e-11,-8.392109218774422e-10,-1.2677441954219786e-10)
    sum a = (1.4799132162280073e-11,2.77883076655513e-12,-1.3247203456447731e-11)
    sum e = 1.2611690255066438e-10
    sum de = -9.3658083490268e-16
Info: CFL hydro = 1.4059261914857133 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4059261914857133 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2572e+05 | 99582 |      1 | 7.921e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6274.587246777709 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 132.01094586812158, dt = 1.4059261914857133 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99582 min = 99582                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99582 min = 99582                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99582
    max = 99582
    avg = 99582
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 373.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.096187950118196e-11,-8.275010207302711e-10,-1.462986737681665e-10)
    sum a = (1.4312012743508966e-11,3.5158091210546737e-12,-1.2686190181277715e-11)
    sum e = 1.2610079575344034e-10
    sum de = -8.81299690237207e-16
Info: CFL hydro = 1.3695910693532931 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3695910693532931 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0165e+05 | 99579 |      1 | 4.938e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10249.106434244639 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 133.4168720596073, dt = 1.3695910693532931 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99579 min = 99579                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99579 min = 99579                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99579
    max = 99579
    avg = 99579
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.7%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 367.58 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.032210060955163e-11,-8.222694469511199e-10,-1.6336117853602737e-10)
    sum a = (1.3968074152858711e-11,4.0435075032804385e-12,-1.2232148393913922e-11)
    sum e = 1.2609855416310083e-10
    sum de = -7.966154152735409e-16
Info: CFL hydro = 1.3717295065773278 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3717295065773278 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0257e+05 | 99579 |      1 | 4.916e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10030.210382951198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 134.7864631289606, dt = 1.3717295065773278 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99579 min = 99579                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99579 min = 99579                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99579
    max = 99579
    avg = 99579
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (0.1%)
   patch tree reduce : 1603.00 ns (0.0%)
   gen split merge   : 1253.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.0%)
   LB compute        : 6.66 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.1%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010581035541716362 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.830393876653368e-11,-8.375772567035136e-10,-1.8009494353786102e-10)
    sum a = (1.40402035139906e-11,4.309654552618608e-12,-1.212628822152007e-11)
    sum e = 1.2607768953689584e-10
    sum de = -7.482606267276398e-16
Info: CFL hydro = 1.3937226456492722 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3937226456492722 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2167e+05 | 99575 |      1 | 8.184e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6034.01300852149 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 136.15819263553794, dt = 1.3937226456492722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99575 min = 99575                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99575 min = 99575                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99575
    max = 99575
    avg = 99575
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.1%)
   patch tree reduce : 1362.00 ns (0.2%)
   gen split merge   : 1273.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 577.44 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1762906908515955e-10,-8.312328999093447e-10,-1.9668021891116066e-10)
    sum a = (1.3690555671136319e-11,4.773037175226106e-12,-1.1637766039472283e-11)
    sum e = 1.260773761321409e-10
    sum de = -6.586765927695606e-16
Info: CFL hydro = 1.3280885181270827 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3280885181270827 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0289e+05 | 99575 |      1 | 4.908e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10223.110765695379 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 137.5519152811872, dt = 1.3280885181270827 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99575 min = 99575                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99575 min = 99575                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99575
    max = 99575
    avg = 99575
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 389.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.4%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010580280878548232 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3647901253288154e-10,-8.266124993363334e-10,-2.1346003367687085e-10)
    sum a = (1.3399376712723526e-11,5.223941944494001e-12,-1.1197110179296773e-11)
    sum e = 1.2606430828717406e-10
    sum de = -5.945110282792369e-16
Info: CFL hydro = 1.37673606602193 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 1.37673606602193 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2208e+05 | 99573 |      1 | 8.156e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5861.904262329521 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 138.8800037993143, dt = 1.37673606602193 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99573 min = 99573                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99573 min = 99573                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99573
    max = 99573
    avg = 99573
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 391.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.6%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010579897195431585 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4245756708181443e-10,-8.349602989313846e-10,-2.2542223526940348e-10)
    sum a = (1.3364015543251157e-11,5.290537967639049e-12,-1.0932151621413534e-11)
    sum e = 1.2604383123941518e-10
    sum de = -5.271243363086876e-16
Info: CFL hydro = 1.2725385196129277 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2725385196129277 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2295e+05 | 99569 |      1 | 8.098e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6120.220488967839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 140.25673986533621, dt = 1.2725385196129277 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99569 min = 99569                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99569 min = 99569                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99569
    max = 99569
    avg = 99569
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.7%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 361.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.6%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6429413822744973e-10,-8.324784566279708e-10,-2.4606817708528525e-10)
    sum a = (1.3144243109148239e-11,5.846586111295015e-12,-1.0567191963524388e-11)
    sum e = 1.2603539799439348e-10
    sum de = -4.476440957505344e-16
Info: CFL hydro = 1.1169066299886807 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1169066299886807 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0402e+05 | 99568 |      1 | 4.880e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9387.078996373279 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 141.52927838494915, dt = 1.1169066299886807 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99568 min = 99568                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99568 min = 99568                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99568
    max = 99568
    avg = 99568
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (0.3%)
   patch tree reduce : 1843.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.1%)
   LB compute        : 2.31 ms    (99.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.6%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010579228133224204 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7296713896317152e-10,-8.419679609874844e-10,-2.602909585289809e-10)
    sum a = (1.3186353115832584e-11,6.040799639412431e-12,-1.0427853551089463e-11)
    sum e = 1.2601581793782396e-10
    sum de = -3.9184836521003663e-16
Info: CFL hydro = 1.1436528013985285 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1436528013985285 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2260e+05 | 99565 |      1 | 8.121e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4951.046069562432 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 142.64618501493783, dt = 1.1436528013985285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99565 min = 99565                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99565 min = 99565                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99565
    max = 99565
    avg = 99565
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (0.1%)
   patch tree reduce : 1503.00 ns (0.0%)
   gen split merge   : 982.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 6.58 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.2%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8025596667169502e-10,-8.385593890451342e-10,-2.668744585421952e-10)
    sum a = (1.2981422113335257e-11,6.027491368974377e-12,-1.0031000598761889e-11)
    sum e = 1.2601117275419463e-10
    sum de = -3.248729743088599e-16
Info: CFL hydro = 1.1795271220136276 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1795271220136276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9776e+05 | 99564 |      1 | 5.035e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8177.731188878746 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 143.78983781633636, dt = 1.1795271220136276 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99564 min = 99564                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99564 min = 99564                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99564
    max = 99564
    avg = 99564
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1071.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 411.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8799688706876806e-10,-8.345516329934051e-10,-2.7276361740188835e-10)
    sum a = (1.2768893427934944e-11,5.9898009783746085e-12,-9.62008345592165e-12)
    sum e = 1.2600683068541574e-10
    sum de = -2.5293532561195266e-16
Info: CFL hydro = 1.2193122983630562 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2193122983630562 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0213e+05 | 99563 |      1 | 4.926e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8620.650647332412 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 144.96936493835, dt = 1.2193122983630562 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99563 min = 99563                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99563 min = 99563                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99563
    max = 99563
    avg = 99563
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1603.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 333.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.2%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010578228816639503 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0977282362556076e-10,-8.199403705627649e-10,-2.872734391442703e-10)
    sum a = (1.234516523901281e-11,6.381965219536469e-12,-9.050379646047955e-12)
    sum e = 1.2597667144904674e-10
    sum de = -2.0210704652019283e-16
Info: CFL hydro = 1.2588661611449117 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2588661611449117 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2227e+05 | 99557 |      1 | 8.143e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5390.755570222376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 146.18867723671306, dt = 1.2588661611449117 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99557 min = 99557                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99557 min = 99557                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99557
    max = 99557
    avg = 99557
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1563.00 ns (0.4%)
   LB compute        : 345.28 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.5%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010577871559052278 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2540048627411763e-10,-8.12673801669003e-10,-2.991102281981142e-10)
    sum a = (1.2078852330417499e-11,6.571716129283115e-12,-8.596548530691693e-12)
    sum e = 1.2596729397645188e-10
    sum de = -1.3382298823419556e-16
Info: CFL hydro = 1.2278096399371385 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2278096399371385 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2283e+05 | 99555 |      1 | 8.105e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5591.229654137637 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 147.44754339785797, dt = 1.1062893974488759 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99555 min = 99555                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99555 min = 99555                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99555
    max = 99555
    avg = 99555
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (0.3%)
   patch tree reduce : 1913.00 ns (0.1%)
   gen split merge   : 951.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.0%)
   LB compute        : 2.53 ms    (99.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010577556671605145 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5753061597356174e-10,-7.950865611215078e-10,-3.2345307137005246e-10)
    sum a = (1.1639359566382887e-11,7.373839562289575e-12,-8.045872890009445e-12)
    sum e = 1.259435267485589e-10
    sum de = -9.550261603191017e-17
Info: CFL hydro = 1.2054973911103541 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2054973911103541 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2264e+05 | 99551 |      1 | 8.117e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4906.306273263821 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 104                                                     [SPH][rank=0]
Info: time since start : 120.977600914 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
              - took 8.36 ms, bandwidth = 635.79 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (57.6%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
              - took 11.18 ms, bandwidth = 1.06 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 745.91 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000006.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 752.37 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000006.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 320.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 325.48 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 470.27 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 474.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000006.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.021622099000000002 s
Info: compute_column_integ took 755.45 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 744.51 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000006.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 148.55383279530685, dt = 1.2054973911103541 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99551 min = 99551                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99551 min = 99551                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99551
    max = 99551
    avg = 99551
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (1.8%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 404.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.1%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01057721255281546 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.668397221838308e-10,-7.965931685253674e-10,-3.334873444288655e-10)
    sum a = (1.1565799578976531e-11,7.39312772624272e-12,-7.750137582517967e-12)
    sum e = 1.2593036477027167e-10
    sum de = -3.3658267354404897e-17
Info: CFL hydro = 1.1791959944873887 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1791959944873887 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2232e+05 | 99548 |      1 | 8.138e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5332.744799274506 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 149.7593301864172, dt = 1.1791959944873887 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99548 min = 99548                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99548 min = 99548                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99548
    max = 99548
    avg = 99548
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 366.66 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.09 us    (65.9%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8894581900452883e-10,-7.982121211194068e-10,-3.564125851789389e-10)
    sum a = (1.152748104262741e-11,7.915730886501297e-12,-7.513373347708567e-12)
    sum e = 1.259196259589751e-10
    sum de = 4.5078802541859773e-17
Info: CFL hydro = 1.1592807162251229 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1592807162251229 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9944e+05 | 99546 |      1 | 4.991e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8504.852348675968 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 150.9385261809046, dt = 1.1592807162251229 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99546 min = 99546                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99546 min = 99546                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99546
    max = 99546
    avg = 99546
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.4%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 443.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.8%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01057654205173139 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.149343648611085e-10,-7.75274873103734e-10,-3.7121989806257013e-10)
    sum a = (1.1012583141190956e-11,8.348354852559933e-12,-6.8582851008174974e-12)
    sum e = 1.2590900049086022e-10
    sum de = 1.0934968038946288e-16
Info: CFL hydro = 1.1442746149822367 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1442746149822367 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2172e+05 | 99544 |      1 | 8.178e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5103.014753319985 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 152.09780689712971, dt = 1.1442746149822367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99544 min = 99544                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99544 min = 99544                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99544
    max = 99544
    avg = 99544
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 340.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2738344888316563e-10,-7.656960655924433e-10,-3.788009300919046e-10)
    sum a = (1.0760005353539115e-11,8.36871350381414e-12,-6.410069298905813e-12)
    sum e = 1.2590881167870105e-10
    sum de = 2.0111450609848465e-16
Info: CFL hydro = 1.217136801220679 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.217136801220679 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0676e+05 | 99544 |      1 | 4.814e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8556.375174496878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 153.24208151211195, dt = 1.217136801220679 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99544 min = 99544                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99544 min = 99544                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99544
    max = 99544
    avg = 99544
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (0.1%)
   patch tree reduce : 1824.00 ns (0.0%)
   gen split merge   : 991.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 8.95 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (70.3%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3878792807947005e-10,-7.646616172355868e-10,-3.8926821586093563e-10)
    sum a = (1.0688505871543707e-11,8.404403789680186e-12,-6.101873188827342e-12)
    sum e = 1.2590106134494663e-10
    sum de = 2.7681131393887634e-16
Info: CFL hydro = 1.1639102533089944 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1639102533089944 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9323e+05 | 99542 |      1 | 5.151e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8505.67575201642 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 154.45921831333263, dt = 1.1639102533089944 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99542 min = 99542                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99542 min = 99542                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99542
    max = 99542
    avg = 99542
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 427.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.5%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.458096096972496e-10,-7.635883787818881e-10,-3.9487133273104e-10)
    sum a = (1.0614945585684043e-11,8.258498912777752e-12,-5.800958070748333e-12)
    sum e = 1.2589481971854278e-10
    sum de = 3.648317639606754e-16
Info: CFL hydro = 1.0991578731771328 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.0991578731771328 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0469e+05 | 99541 |      1 | 4.863e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8616.115096502172 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 155.6231285666416, dt = 1.0991578731771328 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99541 min = 99541                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99541 min = 99541                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99541
    max = 99541
    avg = 99541
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (0.1%)
   patch tree reduce : 1593.00 ns (0.0%)
   gen split merge   : 1001.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.0%)
   LB compute        : 6.57 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (69.9%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010575204508958701 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.65058746428e-10,-7.685728822282531e-10,-4.15811976509298e-10)
    sum a = (1.070407139677141e-11,8.6731564250978e-12,-5.6751311981665475e-12)
    sum e = 1.2587310914613273e-10
    sum de = 4.3255989848476084e-16
Info: CFL hydro = 1.0492677398620545 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.0492677398620545 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2212e+05 | 99537 |      1 | 8.151e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4854.814599916801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 156.72228643981873, dt = 1.0492677398620545 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99537 min = 99537                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99537 min = 99537                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99537
    max = 99537
    avg = 99537
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (0.1%)
   patch tree reduce : 1483.00 ns (0.0%)
   gen split merge   : 912.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.0%)
   LB compute        : 6.81 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010574898874037699 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.853933420891957e-10,-7.603442387787609e-10,-4.338871421551391e-10)
    sum a = (1.0550480797676761e-11,9.081357605070819e-12,-5.314944792137265e-12)
    sum e = 1.258521665758131e-10
    sum de = 4.78624112553893e-16
Info: CFL hydro = 1.009927303516106 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.009927303516106 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2018e+05 | 99533 |      1 | 8.282e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4561.100063799135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 157.77155417968078, dt = 1.009927303516106 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99533 min = 99533                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99533 min = 99533                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99533
    max = 99533
    avg = 99533
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.7%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 373.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0291787240762727e-10,-7.475386883519407e-10,-4.450826350664447e-10)
    sum a = (1.0290366732809512e-11,9.291008962817917e-12,-4.897284883916431e-12)
    sum e = 1.2584686976948596e-10
    sum de = 5.402754750047155e-16
Info: CFL hydro = 0.9843468770406539 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9843468770406539 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0832e+05 | 99532 |      1 | 4.778e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7609.562523534713 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 158.78148148319687, dt = 0.9843468770406539 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99532 min = 99532                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99532 min = 99532                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99532
    max = 99532
    avg = 99532
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (0.2%)
   patch tree reduce : 4.49 us    (0.2%)
   gen split merge   : 1593.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 3.21 us    (0.1%)
   LB compute        : 2.26 ms    (98.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010574315766121768 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.248799546857482e-10,-7.370123867580446e-10,-4.629334385569599e-10)
    sum a = (1.0104006245361963e-11,9.732185943639761e-12,-4.539000261273821e-12)
    sum e = 1.2583690952090522e-10
    sum de = 5.904909550475922e-16
Info: CFL hydro = 0.95289463914971 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 0.95289463914971 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2155e+05 | 99530 |      1 | 8.188e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4327.740349374216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 159.76582836023752, dt = 0.95289463914971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99530 min = 99530                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99530 min = 99530                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99530
    max = 99530
    avg = 99530
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (0.5%)
   patch tree reduce : 1483.00 ns (0.2%)
   gen split merge   : 782.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.1%)
   LB compute        : 962.33 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.337642731998218e-10,-7.329045438903975e-10,-4.689185729599604e-10)
    sum a = (1.0030518043045065e-11,9.692822176593176e-12,-4.2711988713918365e-12)
    sum e = 1.2582703498942932e-10
    sum de = 6.396878304649253e-16
Info: CFL hydro = 0.9277461426666201 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9277461426666201 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0304e+05 | 99528 |      1 | 4.902e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6998.089058177313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 160.71872299938724, dt = 0.9277461426666201 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99528 min = 99528                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99528 min = 99528                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99528
    max = 99528
    avg = 99528
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.3%)
   LB compute        : 385.35 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.46 us    (66.2%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.493559847533692e-10,-7.175617488767793e-10,-4.770518708294469e-10)
    sum a = (9.746542345589676e-12,9.824259111168107e-12,-3.8384281017044036e-12)
    sum e = 1.2582213635015111e-10
    sum de = 6.969650729862992e-16
Info: CFL hydro = 0.929341043491636 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 0.929341043491636 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0307e+05 | 99527 |      1 | 4.901e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6814.538628362991 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 161.64646914205386, dt = 0.929341043491636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99527 min = 99527                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99527 min = 99527                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99527
    max = 99527
    avg = 99527
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 410.40 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.15 us    (68.7%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.571318840240328e-10,-7.053705377783837e-10,-4.764280890727675e-10)
    sum a = (9.513471204877362e-12,9.640784846238924e-12,-3.4620607188323696e-12)
    sum e = 1.2581276416507327e-10
    sum de = 7.494180501976326e-16
Info: CFL hydro = 0.9032709151633654 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9032709151633654 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9933e+05 | 99525 |      1 | 4.993e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6700.768178274849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 162.5758101855455, dt = 0.9032709151633654 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99525 min = 99525                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99525 min = 99525                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99525
    max = 99525
    avg = 99525
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 382.71 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.10 us    (64.6%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010573222301636508 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.727248379603381e-10,-6.905338220874434e-10,-4.834881847159141e-10)
    sum a = (9.241266099931668e-12,9.770732752733262e-12,-3.07020026291876e-12)
    sum e = 1.2579776411806734e-10
    sum de = 7.799064584729962e-16
Info: CFL hydro = 0.9189352101515996 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9189352101515996 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2536e+05 | 99522 |      1 | 7.939e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4096.103204985291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 163.47908110070887, dt = 0.9189352101515996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99522 min = 99522                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99522 min = 99522                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99522
    max = 99522
    avg = 99522
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 452.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.0%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010572950135506777 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.994049842200453e-10,-6.674461498311206e-10,-5.018808239539419e-10)
    sum a = (8.857938847697178e-12,1.0318847366493414e-11,-2.5288744695994695e-12)
    sum e = 1.2578368193787046e-10
    sum de = 8.119957930757745e-16
Info: CFL hydro = 0.9025932304524166 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9025932304524166 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2307e+05 | 99519 |      1 | 8.086e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4091.0833502682926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 164.39801631086047, dt = 0.9025932304524166 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99519 min = 99519                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99519 min = 99519                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99519
    max = 99519
    avg = 99519
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (0.1%)
   patch tree reduce : 1483.00 ns (0.0%)
   gen split merge   : 982.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.0%)
   LB compute        : 7.12 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.0%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.11572757814242e-10,-6.47146323138414e-10,-5.035552963267821e-10)
    sum a = (8.503383972114428e-12,1.0283744033760753e-11,-2.018440746739727e-12)
    sum e = 1.2576369546250093e-10
    sum de = 8.599587586706452e-16
Info: CFL hydro = 0.8894536954056071 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8894536954056071 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9546e+05 | 99515 |      1 | 5.091e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6382.10305324845 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 165.3006095413129, dt = 0.8894536954056071 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99515 min = 99515                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99515 min = 99515                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99515
    max = 99515
    avg = 99515
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 469.37 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.7%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010572417585799456 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.409307916328014e-10,-6.159581357958121e-10,-5.229441039722248e-10)
    sum a = (7.996832467905766e-12,1.0918106921253561e-11,-1.3367869219007684e-12)
    sum e = 1.2574395070282387e-10
    sum de = 8.846179498415668e-16
Info: CFL hydro = 0.8789821751310699 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8789821751310699 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2045e+05 | 99511 |      1 | 8.262e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3875.7895378504513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 166.19006323671852, dt = 0.8789821751310699 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99511 min = 99511                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99511 min = 99511                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99511
    max = 99511
    avg = 99511
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (0.1%)
   patch tree reduce : 1513.00 ns (0.0%)
   gen split merge   : 1092.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.0%)
   LB compute        : 5.66 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.7%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010572155508665158 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.541159873544278e-10,-6.001492980863029e-10,-5.28623360907694e-10)
    sum a = (7.741665111153817e-12,1.0968321179708813e-11,-9.29580883548243e-13)
    sum e = 1.2573956733674635e-10
    sum de = 9.380504409705449e-16
Info: CFL hydro = 0.8707827587056308 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8707827587056308 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2400e+05 | 99510 |      1 | 8.025e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3943.129772211016 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 167.06904541184957, dt = 0.8707827587056308 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99510 min = 99510                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99510 min = 99510                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99510
    max = 99510
    avg = 99510
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.2%)
   LB compute        : 493.59 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.669678332518889e-10,-5.860164202419581e-10,-5.355849919472384e-10)
    sum a = (7.526566588633613e-12,1.103740776095297e-11,-5.48417725768569e-13)
    sum e = 1.2573527941682437e-10
    sum de = 9.949894550463354e-16
Info: CFL hydro = 0.8645453979725447 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8645453979725447 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9127e+05 | 99509 |      1 | 5.203e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6025.491514751735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 167.93982817055522, dt = 0.8645453979725447 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99509 min = 99509                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99509 min = 99509                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99509
    max = 99509
    avg = 99509
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (0.1%)
   patch tree reduce : 1442.00 ns (0.0%)
   gen split merge   : 791.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.0%)
   LB compute        : 5.13 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.734115877277769e-10,-5.765495133286625e-10,-5.359259075942964e-10)
    sum a = (7.388978741871975e-12,1.0859033621210752e-11,-2.5452466488075376e-13)
    sum e = 1.2573605805346405e-10
    sum de = 1.0673100804410308e-15
Info: CFL hydro = 0.8600214752824797 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8600214752824797 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0537e+05 | 99509 |      1 | 4.845e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6423.502762187472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 168.80437356852775, dt = 0.8600214752824797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99509 min = 99509                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99509 min = 99509                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99509
    max = 99509
    avg = 99509
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 476.60 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.920145867780069e-10,-5.605892343932878e-10,-5.49243745145556e-10)
    sum a = (7.1709679504417194e-12,1.1178841159249014e-11,1.3991117409150846e-13)
    sum e = 1.257268917903179e-10
    sum de = 1.1053591381995035e-15
Info: CFL hydro = 0.8570102786981947 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8570102786981947 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0049e+05 | 99507 |      1 | 4.963e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6238.09903236006 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 169.66439504381023, dt = 0.8570102786981947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99507 min = 99507                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99507 min = 99507                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99507
    max = 99507
    avg = 99507
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.7%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 365.96 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.04 us    (66.4%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.027683081654504e-10,-5.555664364285005e-10,-5.567845604575747e-10)
    sum a = (7.156899753811446e-12,1.1237117714044346e-11,3.4229711901097237e-13)
    sum e = 1.2572268067736112e-10
    sum de = 1.1727047688929527e-15
Info: CFL hydro = 0.986185536979554 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 0.986185536979554 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0306e+05 | 99506 |      1 | 4.900e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6295.848154276363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 170.52140532250843, dt = 0.986185536979554 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99506 min = 99506                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99506 min = 99506                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99506
    max = 99506
    avg = 99506
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (0.9%)
   patch tree reduce : 1643.00 ns (0.2%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 655.21 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.097697094491066e-10,-5.445672061948249e-10,-5.563248330566656e-10)
    sum a = (7.012542588313801e-12,1.1013991340630917e-11,6.599057544596876e-13)
    sum e = 1.257264313102445e-10
    sum de = 1.2529699396909059e-15
Info: CFL hydro = 0.9813103758140653 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9813103758140653 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0314e+05 | 99506 |      1 | 4.898e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7247.745979996359 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 171.50759085948798, dt = 0.9813103758140653 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99506 min = 99506                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99506 min = 99506                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99506
    max = 99506
    avg = 99506
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 416.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.070358234217639e-10,-5.439961793547296e-10,-5.466613090911796e-10)
    sum a = (7.004466008574998e-12,1.0428098138026723e-11,7.597416863601046e-13)
    sum e = 1.2571746121910516e-10
    sum de = 1.3199743429077774e-15
Info: CFL hydro = 0.8558770300386788 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.8558770300386788 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0579e+05 | 99504 |      1 | 4.835e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7306.33084890826 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 172.48890123530205, dt = 0.8239036925559446 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99504 min = 99504                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99504 min = 99504                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99504
    max = 99504
    avg = 99504
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.4%)
   LB compute        : 336.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.5%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010570277371899807 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.185954607931614e-10,-5.234505544474096e-10,-5.481946837304768e-10)
    sum a = (6.672704423224075e-12,1.0384346469577904e-11,1.193863385282952e-12)
    sum e = 1.2570042906506975e-10
    sum de = 1.3463729618599495e-15
Info: CFL hydro = 0.9761669728516453 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9761669728516453 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2561e+05 | 99501 |      1 | 7.921e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3744.3783441987644 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 129                                                     [SPH][rank=0]
Info: time since start : 141.460744924 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
              - took 8.40 ms, bandwidth = 632.88 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (59.3%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
              - took 13.14 ms, bandwidth = 924.57 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 759.45 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000007.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 744.84 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000007.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 326.95 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 317.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000007.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 476.94 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 474.32 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000007.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.022459857 s
Info: compute_column_integ took 758.25 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.67 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000007.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 173.312804927858, dt = 0.9761669728516453 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99501 min = 99501                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99501 min = 99501                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99501
    max = 99501
    avg = 99501
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.1%)
   patch tree reduce : 1784.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 613.06 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.1%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.30462721982742e-10,-5.161135347422786e-10,-5.550370180275864e-10)
    sum a = (6.642753156888879e-12,1.0417414061602436e-11,1.4229207990634312e-12)
    sum e = 1.2569959379362862e-10
    sum de = 1.4175081579838979e-15
Info: CFL hydro = 0.9747531803422781 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9747531803422781 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0187e+05 | 99500 |      1 | 4.929e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7129.754502426125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 174.28897190070964, dt = 0.9747531803422781 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99500 min = 99500                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99500 min = 99500                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99500
    max = 99500
    avg = 99500
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (0.2%)
   patch tree reduce : 1653.00 ns (0.1%)
   gen split merge   : 1022.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.0%)
   LB compute        : 3.08 ms    (98.8%)
   LB move op cnt    : 0
   LB apply          : 19.21 us   (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.368794755202888e-10,-5.060751433522994e-10,-5.535152270130047e-10)
    sum a = (6.530787455914012e-12,1.0179143722259161e-11,1.685789445797905e-12)
    sum e = 1.2570098777015752e-10
    sum de = 1.495312506866964e-15
Info: CFL hydro = 0.9744602833299892 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 0.9744602833299892 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0375e+05 | 99500 |      1 | 4.883e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7185.666783721401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 175.26372508105192, dt = 0.9744602833299892 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99500 min = 99500                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99500 min = 99500                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99500
    max = 99500
    avg = 99500
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 408.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.374172558218562e-10,-4.988898533491122e-10,-5.440450481463079e-10)
    sum a = (6.429568588525209e-12,9.670165162482967e-12,1.8646721389827184e-12)
    sum e = 1.2569749474126974e-10
    sum de = 1.5579053127733505e-15
Info: CFL hydro = 1.11791632686125 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 1.11791632686125 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.0263e+05 | 99499 |      1 | 4.910e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7144.118133665236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 176.2381853643819, dt = 1.11791632686125 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99499 min = 99499                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99499 min = 99499                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99499
    max = 99499
    avg = 99499
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (0.1%)
   patch tree reduce : 1623.00 ns (0.0%)
   gen split merge   : 992.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.0%)
   LB compute        : 6.66 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.4%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010569045593500205 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.499159537990696e-10,-4.806312309128683e-10,-5.457241389720137e-10)
    sum a = (6.203653936283833e-12,9.565875261943179e-12,2.259557169239861e-12)
    sum e = 1.2569744592312866e-10
    sum de = 1.6287764161525544e-15
Info: CFL hydro = 1.1030878922345 sink sink = inf                                     [SPH][rank=0]
Info: cfl dt = 1.1030878922345 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2068e+05 | 99498 |      1 | 8.245e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4881.322439690596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 177.35610169124317, dt = 1.1030878922345 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99498 min = 99498                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99498 min = 99498                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99498
    max = 99498
    avg = 99498
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (0.1%)
   patch tree reduce : 1513.00 ns (0.0%)
   gen split merge   : 932.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.0%)
   LB compute        : 4.84 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010568707401893017 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.517879201998174e-10,-4.779118094510268e-10,-5.391027363850816e-10)
    sum a = (6.220941918090017e-12,9.117577493855506e-12,2.360940353598985e-12)
    sum e = 1.2569397514369312e-10
    sum de = 1.698068886177575e-15
Info: CFL hydro = 1.1208962422747157 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1208962422747157 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2706e+05 | 99497 |      1 | 7.830e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5071.368909528436 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 178.45918958347767, dt = 1.1208962422747157 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99497 min = 99497                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99497 min = 99497                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99497
    max = 99497
    avg = 99497
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (0.1%)
   patch tree reduce : 1583.00 ns (0.0%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.0%)
   LB compute        : 9.07 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.2%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.640151002239056e-10,-4.703467934853442e-10,-5.445743697640757e-10)
    sum a = (6.222783744454882e-12,9.110038252365461e-12,2.5539210164544176e-12)
    sum e = 1.2569121742662585e-10
    sum de = 1.776813237210645e-15
Info: CFL hydro = 1.2107968286824171 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2107968286824171 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0148e+05 | 99496 |      1 | 4.938e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8171.4858656831 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 179.58008582575238, dt = 1.2107968286824171 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99496 min = 99496                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99496 min = 99496                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99496
    max = 99496
    avg = 99496
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (0.1%)
   patch tree reduce : 1483.00 ns (0.0%)
   gen split merge   : 1072.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.0%)
   LB compute        : 6.26 ms    (99.4%)
   LB move op cnt    : 0
   LB apply          : 20.73 us   (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.0%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.774241991960311e-10,-4.4439614979400535e-10,-5.444967699920629e-10)
    sum a = (5.872029780082636e-12,8.962921172234494e-12,3.0766693362652836e-12)
    sum e = 1.256805050142405e-10
    sum de = 1.8315432665332734e-15
Info: CFL hydro = 1.2754218300458569 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2754218300458569 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0028e+05 | 99493 |      1 | 4.968e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8774.239283997713 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 180.7908826544348, dt = 1.2754218300458569 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99493 min = 99493                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99493 min = 99493                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99493
    max = 99493
    avg = 99493
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.0%)
   patch tree reduce : 1603.00 ns (0.2%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.2%)
   LB compute        : 630.98 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.4%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010567595067709185 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.847478918274106e-10,-4.3570962218756826e-10,-5.409487152426147e-10)
    sum a = (5.8370567924818386e-12,8.645522043200279e-12,3.257068700697529e-12)
    sum e = 1.2566451896918296e-10
    sum de = 1.864895327289288e-15
Info: CFL hydro = 1.277909536321547 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.277909536321547 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2660e+05 | 99489 |      1 | 7.858e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5842.782220470901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 182.06630448448064, dt = 1.277909536321547 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99489 min = 99489                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99489 min = 99489                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99489
    max = 99489
    avg = 99489
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (0.1%)
   patch tree reduce : 1483.00 ns (0.0%)
   gen split merge   : 1012.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.0%)
   LB compute        : 7.62 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (72.8%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010567198618628435 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.934274617654663e-10,-4.1287707737524083e-10,-5.322852676268182e-10)
    sum a = (5.53979084173358e-12,8.259407157769487e-12,3.663530368760565e-12)
    sum e = 1.256517260236158e-10
    sum de = 1.925529947479866e-15
Info: CFL hydro = 1.2832676943341819 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2832676943341819 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2121e+05 | 99486 |      1 | 8.207e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5605.209699640349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 183.34421402080218, dt = 1.2832676943341819 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99486 min = 99486                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99486 min = 99486                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99486
    max = 99486
    avg = 99486
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.7%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 374.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (65.9%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.844770446904056e-10,-3.9896155578090403e-10,-5.037299875512712e-10)
    sum a = (5.252714538101229e-12,7.139647092766323e-12,3.847949730762337e-12)
    sum e = 1.2563925880733845e-10
    sum de = 1.9834062201944238e-15
Info: CFL hydro = 1.2912786515599823 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.2912786515599823 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9918e+05 | 99483 |      1 | 4.995e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9249.657513118587 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 184.62748171513635, dt = 1.2912786515599823 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99483 min = 99483                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99483 min = 99483                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99483
    max = 99483
    avg = 99483
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 429.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 63.42 us   (97.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010566396113942238 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.873597654099222e-10,-3.9883452024069263e-10,-4.961084164305547e-10)
    sum a = (5.3372364117741296e-12,6.697119248436617e-12,3.8047872550698005e-12)
    sum e = 1.2563706092265072e-10
    sum de = 2.062127663380222e-15
Info: CFL hydro = 1.3335658800441725 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3335658800441725 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2234e+05 | 99482 |      1 | 8.132e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5716.66033260893 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 185.91876036669635, dt = 1.3335658800441725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99482 min = 99482                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99482 min = 99482                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99482
    max = 99482
    avg = 99482
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (0.9%)
   patch tree reduce : 1512.00 ns (0.2%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 614.43 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01056597842971332 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.136693324017293e-10,-3.599198134135321e-10,-5.066077095758449e-10)
    sum a = (4.8928618925605424e-12,7.026508164990481e-12,4.505161682631667e-12)
    sum e = 1.2562059746723088e-10
    sum de = 2.0982733661711542e-15
Info: CFL hydro = 1.3785527471384726 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3785527471384726 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2206e+05 | 99478 |      1 | 8.150e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5890.77691869605 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 187.25232624674052, dt = 1.3785527471384726 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99478 min = 99478                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99478 min = 99478                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99478
    max = 99478
    avg = 99478
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 394.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01056554521384712 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.20430971819284e-10,-3.3289007109106e-10,-4.944495291254169e-10)
    sum a = (4.5396666636525016e-12,6.558742168798442e-12,4.987158194569311e-12)
    sum e = 1.2560950696647305e-10
    sum de = 2.1693384356064287e-15
Info: CFL hydro = 1.5366595708908382 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5366595708908382 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2707e+05 | 99475 |      1 | 7.829e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6339.355001809061 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 188.630878993879, dt = 1.5366595708908382 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99475 min = 99475                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99475 min = 99475                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99475
    max = 99475
    avg = 99475
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (0.1%)
   patch tree reduce : 1913.00 ns (0.0%)
   gen split merge   : 981.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.0%)
   LB compute        : 5.86 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.8%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01056506058043208 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.370997298007923e-10,-3.074851945380598e-10,-4.951738165943776e-10)
    sum a = (4.33923959694691e-12,6.478030387611829e-12,5.416987069164835e-12)
    sum e = 1.2560758237151298e-10
    sum de = 2.2482487412502495e-15
Info: CFL hydro = 1.5264371532366314 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5264371532366314 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2557e+05 | 99473 |      1 | 7.921e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6983.496103667121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 190.16753856476984, dt = 1.5264371532366314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99473 min = 99473                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99473 min = 99473                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99473
    max = 99473
    avg = 99473
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (0.8%)
   patch tree reduce : 1933.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.2%)
   LB compute        : 717.56 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.6%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010564577358292923 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.467996541098517e-10,-3.0327522388368036e-10,-4.934024593948213e-10)
    sum a = (4.4418905766257376e-12,6.274138935872094e-12,5.412048101286691e-12)
    sum e = 1.256005761583135e-10
    sum de = 2.3261912600900404e-15
Info: CFL hydro = 1.4355829044210737 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4355829044210737 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2806e+05 | 99471 |      1 | 7.767e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7074.584468979855 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 191.69397571800647, dt = 1.4355829044210737 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99471 min = 99471                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99471 min = 99471                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99471
    max = 99471
    avg = 99471
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.97 us   (0.3%)
   patch tree reduce : 1483.00 ns (0.0%)
   gen split merge   : 1052.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.0%)
   LB compute        : 6.16 ms    (99.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (73.3%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010564121244577236 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.362016545351668e-10,-3.270332603448761e-10,-4.713339109960736e-10)
    sum a = (4.8079350405385145e-12,5.3549565049982296e-12,4.752267065468633e-12)
    sum e = 1.2558105978562124e-10
    sum de = 2.355881637088893e-15
Info: CFL hydro = 1.3635393176110115 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3635393176110115 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2404e+05 | 99467 |      1 | 8.019e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6444.941542832427 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 193.12955862242754, dt = 1.3635393176110115 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99467 min = 99467                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99467 min = 99467                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99467
    max = 99467
    avg = 99467
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 1433.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 482.84 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.6%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.372277628557195e-10,-3.259186581290175e-10,-4.589769563668465e-10)
    sum a = (4.855753193563372e-12,4.860713497134983e-12,4.592869512687053e-12)
    sum e = 1.2557714686949327e-10
    sum de = 2.4200702956116025e-15
Info: CFL hydro = 1.3047548278529801 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3047548278529801 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0369e+05 | 99466 |      1 | 4.883e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10052.393057204945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 194.49309794003855, dt = 1.3047548278529801 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99466 min = 99466                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99466 min = 99466                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99466
    max = 99466
    avg = 99466
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.6%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 401.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.6%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010563269201532973 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.424252460694044e-10,-3.1130919410490033e-10,-4.489326411206092e-10)
    sum a = (4.712963814089441e-12,4.4960914587776825e-12,4.718438069710554e-12)
    sum e = 1.255685109233681e-10
    sum de = 2.4645217981613638e-15
Info: CFL hydro = 1.5118566856370335 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5118566856370335 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2416e+05 | 99464 |      1 | 8.011e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5863.516774462793 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 195.79785276789153, dt = 1.5118566856370335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99464 min = 99464                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99464 min = 99464                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99464
    max = 99464
    avg = 99464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (0.1%)
   patch tree reduce : 1383.00 ns (0.0%)
   gen split merge   : 962.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.0%)
   LB compute        : 6.14 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (70.4%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010562783959638094 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.274479505565847e-10,-3.28556548063345e-10,-4.1749126950663225e-10)
    sum a = (4.890733930429027e-12,3.355571920141186e-12,4.065243842299363e-12)
    sum e = 1.2554804778879332e-10
    sum de = 2.4800356295727304e-15
Info: CFL hydro = 1.5923636371463812 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5923636371463812 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2605e+05 | 99458 |      1 | 7.890e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6897.876654676296 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 197.30970945352857, dt = 0.7620676068805778 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99458 min = 99458                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99458 min = 99458                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99458
    max = 99458
    avg = 99458
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 480.91 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.347752646470573e-10,-3.233200191228551e-10,-4.185645623228043e-10)
    sum a = (4.881865327340112e-12,3.391769504993205e-12,4.05110951234899e-12)
    sum e = 1.2551655137342562e-10
    sum de = 2.5008560528339214e-15
Info: CFL hydro = 1.5624239830040576 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5624239830040576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1337e+05 | 99455 |      1 | 4.661e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5885.705947877309 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 149                                                     [SPH][rank=0]
Info: time since start : 159.93116545 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
              - took 8.22 ms, bandwidth = 646.21 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (54.9%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
              - took 13.80 ms, bandwidth = 880.06 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 748.90 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000008.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 749.55 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000008.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 318.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 318.02 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000008.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 478.63 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 480.63 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000008.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.021169942 s
Info: compute_column_integ took 761.77 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 749.64 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000008.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 198.07177706040915, dt = 1.5624239830040576 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99455 min = 99455                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99455 min = 99455                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99455
    max = 99455
    avg = 99455
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.6%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 410.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.1%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.387749813667368e-10,-3.1206192980731926e-10,-4.049335378696309e-10)
    sum a = (4.796155002182405e-12,2.9555006195357867e-12,4.0429262231123575e-12)
    sum e = 1.2553509960612193e-10
    sum de = 2.564720986211905e-15
Info: CFL hydro = 1.6230226666488234 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6230226666488234 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9866e+05 | 99454 |      1 | 5.006e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11235.570097101796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 199.6342010434132, dt = 1.6230226666488234 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99454 min = 99454                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99454 min = 99454                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99454
    max = 99454
    avg = 99454
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 446.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
central potential accretion : +=  6.000000000000001e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010561508499166712 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.559389719707724e-10,-2.8663488648538773e-10,-4.0493180299189596e-10)
    sum a = (4.5599153711696985e-12,3.029359047625211e-12,4.312331811430722e-12)
    sum e = 1.255105722738902e-10
    sum de = 2.5643308700242865e-15
Info: CFL hydro = 1.65459969682008 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 1.65459969682008 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2888e+05 | 99448 |      1 | 7.716e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7572.001993693921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 201.25722371006205, dt = 1.65459969682008 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99448 min = 99448                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99448 min = 99448                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99448
    max = 99448
    avg = 99448
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (0.1%)
   patch tree reduce : 1653.00 ns (0.0%)
   gen split merge   : 1022.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.0%)
   LB compute        : 8.94 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.7%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.67640931564307e-10,-2.7312466344920404e-10,-4.0094529629520046e-10)
    sum a = (4.515425388322313e-12,2.9625368625260043e-12,4.328062204057975e-12)
    sum e = 1.2551088979468475e-10
    sum de = 2.6163650088849444e-15
Info: CFL hydro = 1.5662604716987738 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5662604716987738 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9973e+05 | 99447 |      1 | 4.979e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11963.300609142163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 202.91182340688212, dt = 1.5662604716987738 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99447 min = 99447                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99447 min = 99447                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99447
    max = 99447
    avg = 99447
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.4%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 435.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.2%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010560458699629904 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.756036583458043e-10,-2.6930464887548815e-10,-3.956530957419896e-10)
    sum a = (4.5641605633482484e-12,2.844115141494594e-12,4.135494818318139e-12)
    sum e = 1.2550184347285386e-10
    sum de = 2.6539135846570927e-15
Info: CFL hydro = 1.4969261862612777 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4969261862612777 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2552e+05 | 99445 |      1 | 7.923e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7117.095723458842 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 204.4780838785809, dt = 1.4969261862612777 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99445 min = 99445                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99445 min = 99445                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99445
    max = 99445
    avg = 99445
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (0.1%)
   patch tree reduce : 2.07 us    (0.0%)
   gen split merge   : 982.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.0%)
   LB compute        : 5.14 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.8%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.853008274410776e-10,-2.68830511560224e-10,-3.9422103735958907e-10)
    sum a = (4.662661072623688e-12,2.865866733898546e-12,3.898622748720084e-12)
    sum e = 1.2549343925489938e-10
    sum de = 2.684356768350421e-15
Info: CFL hydro = 1.468065979435794 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.468065979435794 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9900e+05 | 99443 |      1 | 4.997e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10784.230568494315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 205.97501006484217, dt = 1.468065979435794 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99443 min = 99443                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99443 min = 99443                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99443
    max = 99443
    avg = 99443
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (0.1%)
   patch tree reduce : 1784.00 ns (0.0%)
   gen split merge   : 892.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.0%)
   LB compute        : 6.06 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.8%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.954892776500927e-10,-2.7085180068741703e-10,-3.945370655550727e-10)
    sum a = (4.786702605861327e-12,2.965995156895126e-12,3.6045577962372896e-12)
    sum e = 1.2548632004180474e-10
    sum de = 2.7114305908652383e-15
Info: CFL hydro = 1.5997969494108017 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5997969494108017 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0219e+05 | 99441 |      1 | 4.918e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10746.009689718663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 207.44307604427797, dt = 1.5997969494108017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99441 min = 99441                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99441 min = 99441                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99441
    max = 99441
    avg = 99441
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (0.1%)
   patch tree reduce : 1573.00 ns (0.0%)
   gen split merge   : 1092.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.0%)
   LB compute        : 5.02 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.0%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.075096637320883e-10,-2.576651957510972e-10,-3.922605776773981e-10)
    sum a = (4.710909185707634e-12,3.046757122087567e-12,3.573431476471467e-12)
    sum e = 1.254898345651897e-10
    sum de = 2.73968890675954e-15
Info: CFL hydro = 1.5308820164853545 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5308820164853545 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1062e+05 | 99440 |      1 | 4.721e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12198.219379696602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 209.04287299368877, dt = 1.5308820164853545 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99440 min = 99440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99440 min = 99440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99440
    max = 99440
    avg = 99440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (0.1%)
   patch tree reduce : 1533.00 ns (0.0%)
   gen split merge   : 911.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.0%)
   LB compute        : 6.16 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.147326936240745e-10,-2.530513289291226e-10,-3.8695998902293786e-10)
    sum a = (4.71800130527359e-12,3.0162439490816315e-12,3.362675804370099e-12)
    sum e = 1.254917919954082e-10
    sum de = 2.777925185951475e-15
Info: CFL hydro = 1.6004970806778536 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6004970806778536 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1045e+05 | 99440 |      1 | 4.725e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11663.493552386817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 210.57375501017412, dt = 1.6004970806778536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99440 min = 99440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99440 min = 99440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99440
    max = 99440
    avg = 99440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (0.1%)
   patch tree reduce : 1673.00 ns (0.0%)
   gen split merge   : 1012.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.0%)
   LB compute        : 5.54 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.6%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010557916700787864 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.347430418861246e-10,-2.404139784647159e-10,-3.9568856151648133e-10)
    sum a = (4.681078961702975e-12,3.520477429327276e-12,3.365225999534897e-12)
    sum e = 1.2547806265539952e-10
    sum de = 2.779948047384592e-15
Info: CFL hydro = 1.5732117698225925 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.5732117698225925 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2598e+05 | 99436 |      1 | 7.893e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7299.674792725304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 212.17425209085198, dt = 1.5732117698225925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99436 min = 99436                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99436 min = 99436                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99436
    max = 99436
    avg = 99436
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (0.1%)
   patch tree reduce : 1592.00 ns (0.0%)
   gen split merge   : 1011.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.0%)
   LB compute        : 5.48 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.0%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.366146567871106e-10,-2.3600456652395427e-10,-3.8408670102115994e-10)
    sum a = (4.6167361455486485e-12,3.304013042596559e-12,3.1073058567292795e-12)
    sum e = 1.2546615585254524e-10
    sum de = 2.7832924031614306e-15
Info: CFL hydro = 1.8065908732715048 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.8065908732715048 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1014e+05 | 99433 |      1 | 4.732e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11969.066042455872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 213.74746386067457, dt = 1.8065908732715048 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99433 min = 99433                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99433 min = 99433                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99433
    max = 99433
    avg = 99433
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (0.1%)
   patch tree reduce : 1473.00 ns (0.0%)
   gen split merge   : 782.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.0%)
   LB compute        : 8.97 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.2%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.437434916122244e-10,-2.3975441120124386e-10,-3.807083430951492e-10)
    sum a = (4.69937829011613e-12,3.3905783325142126e-12,2.6338315664896585e-12)
    sum e = 1.254745064683364e-10
    sum de = 2.7981774285264154e-15
Info: CFL hydro = 1.7488478769471074 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7488478769471074 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0310e+05 | 99432 |      1 | 4.896e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13284.21238759516 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 215.5540547339461, dt = 1.7488478769471074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99432 min = 99432                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99432 min = 99432                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99432
    max = 99432
    avg = 99432
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (0.1%)
   patch tree reduce : 1533.00 ns (0.0%)
   gen split merge   : 1152.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.0%)
   LB compute        : 5.58 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.6%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.503950942089911e-10,-2.43661144538449e-10,-3.776706143694624e-10)
    sum a = (4.767383980172769e-12,3.49896187561858e-12,2.1673455941651883e-12)
    sum e = 1.2547213359114462e-10
    sum de = 2.807203117726622e-15
Info: CFL hydro = 1.7174867715787985 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7174867715787985 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0344e+05 | 99431 |      1 | 4.887e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12881.672449013717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 217.3029026108932, dt = 1.7174867715787985 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99431 min = 99431                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99431 min = 99431                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99431
    max = 99431
    avg = 99431
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (0.1%)
   patch tree reduce : 1884.00 ns (0.0%)
   gen split merge   : 1012.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 5.07 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.6%)
central potential accretion : +=  5e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010555615186448666 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.501339570095862e-10,-2.3183739386551796e-10,-3.611268368711987e-10)
    sum a = (4.5632123314412486e-12,3.206702800753948e-12,1.998530886199304e-12)
    sum e = 1.2545016929825068e-10
    sum de = 2.7740451777636825e-15
Info: CFL hydro = 1.685755939686078 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.685755939686078 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2282e+05 | 99426 |      1 | 8.095e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7637.77450021066 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 219.020389382472, dt = 1.685755939686078 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99426 min = 99426                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99426 min = 99426                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99426
    max = 99426
    avg = 99426
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 490.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.3%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.551400962186244e-10,-2.338445160645575e-10,-3.5740387303823935e-10)
    sum a = (4.566548079173245e-12,3.309541781342271e-12,1.5701741585001505e-12)
    sum e = 1.2543834255753687e-10
    sum de = 2.758524182327172e-15
Info: CFL hydro = 1.7257705703760748 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7257705703760748 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0203e+05 | 99423 |      1 | 4.921e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12331.566833420404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 220.70614532215808, dt = 1.7257705703760748 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99423 min = 99423                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99423 min = 99423                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99423
    max = 99423
    avg = 99423
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (0.1%)
   patch tree reduce : 1603.00 ns (0.0%)
   gen split merge   : 971.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.0%)
   LB compute        : 5.30 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.5%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.677591821493667e-10,-2.1933797099042206e-10,-3.5717071437663845e-10)
    sum a = (4.4325985813624304e-12,3.614590244264016e-12,1.539816037310476e-12)
    sum e = 1.2543940520950789e-10
    sum de = 2.7557832210182693e-15
Info: CFL hydro = 1.7180437567549216 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.7180437567549216 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9614e+05 | 99422 |      1 | 5.069e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12256.306095077656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 222.43191589253416, dt = 0.3988333004261335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99422 min = 99422                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99422 min = 99422                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99422
    max = 99422
    avg = 99422
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (0.1%)
   patch tree reduce : 1563.00 ns (0.0%)
   gen split merge   : 982.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.0%)
   LB compute        : 5.47 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.1%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.637396834730002e-10,-2.2490845481332242e-10,-3.52669478174201e-10)
    sum a = (4.4531903952081756e-12,3.501956027310012e-12,1.2827440994760316e-12)
    sum e = 1.2540569482653732e-10
    sum de = 2.755668537526617e-15
Info: CFL hydro = 1.6637301603119998 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6637301603119998 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1291e+05 | 99421 |      1 | 4.670e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3074.720266837602 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 165                                                     [SPH][rank=0]
Info: time since start : 173.92697067100002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
              - took 8.13 ms, bandwidth = 652.83 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (54.3%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
              - took 11.34 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 744.98 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000009.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.00 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000009.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 324.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 323.14 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000009.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 490.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 491.58 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000009.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.021586716000000002 s
Info: compute_column_integ took 757.92 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.13 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000009.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
---------------- t = 222.8307491929603, dt = 1.6637301603119998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99421 min = 99421                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99421 min = 99421                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99421
    max = 99421
    avg = 99421
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (0.1%)
   patch tree reduce : 1733.00 ns (0.0%)
   gen split merge   : 961.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.0%)
   LB compute        : 9.06 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.711433592643546e-10,-2.1907144077816947e-10,-3.505464627258155e-10)
    sum a = (4.367140141520207e-12,3.737199553251346e-12,1.0474418893862443e-12)
    sum e = 1.2543778552926078e-10
    sum de = 2.7402983747117667e-15
Info: CFL hydro = 1.6866132268391691 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6866132268391691 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0583e+05 | 99421 |      1 | 4.830e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12400.022684731019 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 224.4944793532723, dt = 1.6866132268391691 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99421 min = 99421                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99421 min = 99421                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99421
    max = 99421
    avg = 99421
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (0.1%)
   patch tree reduce : 1673.00 ns (0.0%)
   gen split merge   : 1042.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.0%)
   LB compute        : 5.42 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.845328098474626e-10,-2.0723763268783718e-10,-3.5499024187493645e-10)
    sum a = (4.238490248362001e-12,4.218440053891729e-12,9.795162132340904e-13)
    sum e = 1.2543812354765903e-10
    sum de = 2.7212422844021965e-15
Info: CFL hydro = 1.6668527585305395 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6668527585305395 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0210e+05 | 99420 |      1 | 4.919e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12342.6706419206 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 226.18109258011148, dt = 1.6668527585305395 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99420 min = 99420                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99420 min = 99420                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99420
    max = 99420
    avg = 99420
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (0.2%)
   patch tree reduce : 1824.00 ns (0.0%)
   gen split merge   : 1102.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 3.85 ms    (99.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.6%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.956710951505423e-10,-1.9077661408017857e-10,-3.5461401801217306e-10)
    sum a = (4.042968180732162e-12,4.556495594708459e-12,1.0078159638244552e-12)
    sum e = 1.254367876049841e-10
    sum de = 2.7009496637915407e-15
Info: CFL hydro = 1.6552148159757418 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6552148159757418 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0471e+05 | 99419 |      1 | 4.857e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12355.710230402137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 227.84794533864203, dt = 1.6552148159757418 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99419 min = 99419                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99419 min = 99419                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99419
    max = 99419
    avg = 99419
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (0.1%)
   patch tree reduce : 1834.00 ns (0.0%)
   gen split merge   : 1082.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.0%)
   LB compute        : 8.98 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.4%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.920732207478799e-10,-1.8971879106782255e-10,-3.426231945854457e-10)
    sum a = (3.901515461893119e-12,4.46060025486286e-12,6.31776678452284e-13)
    sum e = 1.2543067615615668e-10
    sum de = 2.6635122130030812e-15
Info: CFL hydro = 1.6157063782549839 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.6157063782549839 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9883e+05 | 99417 |      1 | 5.000e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11917.077666516698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 229.50316015461777, dt = 1.6157063782549839 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99417 min = 99417                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99417 min = 99417                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99417
    max = 99417
    avg = 99417
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (0.1%)
   patch tree reduce : 1684.00 ns (0.0%)
   gen split merge   : 1053.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.0%)
   LB compute        : 6.24 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.5%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.022333553473026e-10,-1.8693427300381054e-10,-3.4975685631359227e-10)
    sum a = (3.8340354994140115e-12,4.993349741453221e-12,3.80699596353426e-13)
    sum e = 1.25423475171047e-10
    sum de = 2.619919946898662e-15
Info: CFL hydro = 1.4056560399259994 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4056560399259994 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0430e+05 | 99415 |      1 | 4.866e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11953.339901709194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 231.11886653287274, dt = 1.4056560399259994 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99415 min = 99415                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99415 min = 99415                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99415
    max = 99415
    avg = 99415
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (0.1%)
   patch tree reduce : 1372.00 ns (0.0%)
   gen split merge   : 1293.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.0%)
   LB compute        : 8.97 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.0%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.012265260752539e-10,-1.856965828952498e-10,-3.44176715496998e-10)
    sum a = (3.726588048153173e-12,5.0630014084767584e-12,8.037529147401784e-14)
    sum e = 1.254153224917443e-10
    sum de = 2.5852301825666047e-15
Info: CFL hydro = 1.419809411624962 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.419809411624962 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0131e+05 | 99414 |      1 | 4.938e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10247.057035350572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 232.52452257279873, dt = 1.419809411624962 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99414 min = 99414                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99414 min = 99414                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99414
    max = 99414
    avg = 99414
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (0.1%)
   patch tree reduce : 1533.00 ns (0.0%)
   gen split merge   : 1262.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.0%)
   LB compute        : 6.42 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.9%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.018625382588731e-10,-1.7532390055479665e-10,-3.3568881158829305e-10)
    sum a = (3.508661470725757e-12,5.090022801691662e-12,2.0650932009423917e-14)
    sum e = 1.2541430544854753e-10
    sum de = 2.554535141377299e-15
Info: CFL hydro = 1.4431776648189736 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4431776648189736 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1006e+05 | 99413 |      1 | 4.733e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10800.408261739989 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 233.94433198442368, dt = 1.4431776648189736 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99413 min = 99413                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99413 min = 99413                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99413
    max = 99413
    avg = 99413
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (0.1%)
   patch tree reduce : 1844.00 ns (0.0%)
   gen split merge   : 881.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.0%)
   LB compute        : 5.58 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.0%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010549955941555552 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.098199126670712e-10,-1.5822751150459509e-10,-3.3422334088627083e-10)
    sum a = (3.281311393321451e-12,5.379109976473682e-12,1.403217330159063e-13)
    sum e = 1.2541356565405222e-10
    sum de = 2.52367735621888e-15
Info: CFL hydro = 1.3967181903213903 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3967181903213903 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.2372e+05 | 99412 |      1 | 8.035e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6465.772004504177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 235.38750964924265, dt = 1.3967181903213903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99412 min = 99412                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99412 min = 99412                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99412
    max = 99412
    avg = 99412
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 417.65 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.21 us    (68.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.142920554920675e-10,-1.5050219166879057e-10,-3.3411115119617255e-10)
    sum a = (3.1194589945559382e-12,5.669870269986708e-12,4.48142083420862e-14)
    sum e = 1.2541569340926173e-10
    sum de = 2.49374082703213e-15
Info: CFL hydro = 1.4333309950644488 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.4333309950644488 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1423e+05 | 99412 |      1 | 4.640e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10835.6375133625 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 236.78422783956404, dt = 1.4333309950644488 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99412 min = 99412                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99412 min = 99412                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99412
    max = 99412
    avg = 99412
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (0.1%)
   patch tree reduce : 1453.00 ns (0.0%)
   gen split merge   : 992.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.0%)
   LB compute        : 6.35 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.29718216452691e-10,-1.277827136686861e-10,-3.4158151225037756e-10)
    sum a = (2.841042179231167e-12,6.274818887089341e-12,3.5597977349830513e-13)
    sum e = 1.254101281947332e-10
    sum de = 2.446953852657372e-15
Info: CFL hydro = 1.3674802874223975 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3674802874223975 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0466e+05 | 99410 |      1 | 4.857e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10623.366606558317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 238.21755883462848, dt = 1.3674802874223975 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99410 min = 99410                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99410 min = 99410                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99410
    max = 99410
    avg = 99410
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (0.8%)
   patch tree reduce : 1463.00 ns (0.2%)
   gen split merge   : 1042.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 703.52 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.334770008190565e-10,-1.189962832659812e-10,-3.4114829323767977e-10)
    sum a = (2.6586032270506206e-12,6.5513535268971334e-12,3.062821106997667e-13)
    sum e = 1.2541151968931107e-10
    sum de = 2.414193094115159e-15
Info: CFL hydro = 1.3345096425115508 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3345096425115508 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1032e+05 | 99410 |      1 | 4.727e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10415.46356537004 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 239.5850391220509, dt = 1.3345096425115508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99410 min = 99410                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99410 min = 99410                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99410
    max = 99410
    avg = 99410
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (0.1%)
   patch tree reduce : 1833.00 ns (0.0%)
   gen split merge   : 1172.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.0%)
   LB compute        : 4.89 ms    (99.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (76.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.36900191625788e-10,-1.1006436097836352e-10,-3.4077353709472647e-10)
    sum a = (2.4721980333313833e-12,6.822306958997033e-12,2.7402736116455445e-13)
    sum e = 1.2541379301657292e-10
    sum de = 2.380373369480127e-15
Info: CFL hydro = 1.3329027203054833 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3329027203054833 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0415e+05 | 99410 |      1 | 4.869e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9866.135330402203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 240.91954876456245, dt = 1.3329027203054833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99410 min = 99410                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99410 min = 99410                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99410
    max = 99410
    avg = 99410
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (0.1%)
   patch tree reduce : 1703.00 ns (0.0%)
   gen split merge   : 892.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.0%)
   LB compute        : 6.09 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.40071011345267e-10,-1.0079009449013927e-10,-3.404298074167295e-10)
    sum a = (2.27806459410506e-12,7.092593797524853e-12,2.581522366586145e-13)
    sum e = 1.2541691038643519e-10
    sum de = 2.3448739396909786e-15
Info: CFL hydro = 1.3391117453796564 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3391117453796564 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0978e+05 | 99410 |      1 | 4.739e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10125.913411841295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 242.25245148486792, dt = 1.3391117453796564 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99410 min = 99410                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99410 min = 99410                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99410
    max = 99410
    avg = 99410
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (0.1%)
   patch tree reduce : 1462.00 ns (0.0%)
   gen split merge   : 1062.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.0%)
   LB compute        : 6.14 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.1%)
central potential accretion : +=  3.0000000000000004e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.281574669449258e-10,-1.117641174170637e-10,-3.3281692793070897e-10)
    sum a = (2.2131711868435973e-12,7.0037345470238186e-12,-2.957176754713736e-13)
    sum e = 1.2540478677948637e-10
    sum de = 2.2745666813022476e-15
Info: CFL hydro = 1.3247109321097352 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.3247109321097352 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0480e+05 | 99407 |      1 | 4.854e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9931.96335010586 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 243.59156323024757, dt = 1.3247109321097352 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99407 min = 99407                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99407 min = 99407                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99407
    max = 99407
    avg = 99407
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (0.1%)
   patch tree reduce : 1583.00 ns (0.0%)
   gen split merge   : 972.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.0%)
   LB compute        : 9.06 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (73.3%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.31837105576782e-10,-9.33804391084955e-11,-3.2863644161545083e-10)
    sum a = (1.9260374185332828e-12,7.1896046848780926e-12,-7.234138214751511e-14)
    sum e = 1.254023033500738e-10
    sum de = 2.2342092054296454e-15
Info: CFL hydro = 1.258790845269727 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.258790845269727 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0846e+05 | 99406 |      1 | 4.769e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10000.59260799016 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 244.9162741623573, dt = 1.258790845269727 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99406 min = 99406                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99406 min = 99406                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99406
    max = 99406
    avg = 99406
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (0.1%)
   patch tree reduce : 1482.00 ns (0.0%)
   gen split merge   : 1202.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.0%)
   LB compute        : 9.05 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (73.6%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.2811469068037e-10,-8.825477047797553e-11,-3.217830102734181e-10)
    sum a = (1.7444695253702943e-12,7.2015217574835406e-12,-1.7159955676872983e-13)
    sum e = 1.253982161296177e-10
    sum de = 2.188776588887133e-15
Info: CFL hydro = 1.262409691835745 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.262409691835745 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0253e+05 | 99405 |      1 | 4.908e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9232.932490379077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 246.175065007627, dt = 1.262409691835745 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99405 min = 99405                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99405 min = 99405                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99405
    max = 99405
    avg = 99405
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 420.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.301949754207392e-10,-7.89971130661362e-11,-3.219897981502694e-10)
    sum a = (1.545435632414905e-12,7.461060506997217e-12,-1.4499770524433912e-13)
    sum e = 1.2540106202388123e-10
    sum de = 2.1527312874887228e-15
Info: CFL hydro = 1.1715908132388242 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 1.1715908132388242 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0815e+05 | 99405 |      1 | 4.776e-01 | 0.0% |   0.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9516.462732028576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 247.43747469946277, dt = 0.15224662604867945 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99405 min = 99405                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99405 min = 99405                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99405
    max = 99405
    avg = 99405
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.7%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.4%)
   LB compute        : 363.57 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.182841425487674e-10,-9.07842216184818e-11,-3.1260606129835954e-10)
    sum a = (1.6084928910293204e-12,7.1163895215447634e-12,-4.977547906389846e-13)
    sum e = 1.2537458559857512e-10
    sum de = 2.1277148110618584e-15
Info: CFL hydro = 1.174614421735138 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 1.174614421735138 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0184e+05 | 99403 |      1 | 4.925e-01 | 0.0% |   0.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1112.9101230685073 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 183                                                     [SPH][rank=0]
Info: time since start : 187.93691347200001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
              - took 8.20 ms, bandwidth = 647.14 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (58.3%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
              - took 11.43 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 743.75 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000010.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 741.35 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000010.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 313.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 315.22 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000010.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 491.69 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 487.13 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000010.json
Info: compute_column_integ field_name: custom, rays count: 1048576   [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.022529104 s
Info: compute_column_integ took 756.25 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 742.02 ms                            [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000010.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json

Plot generation (make_plots.py)#

Load the on-the-fly analysis after the run to make the plots (everything in this section can be in another file)

516 import matplotlib
517 import matplotlib.pyplot as plt
518
519 # Uncomment this and replace by you dump folder, here since it is just above i comment it out
520 # dump_folder = "my_masterpiece"
521 # dump_folder += "/"
522
523 face_on_render_kwargs = {
524     "x_unit": "au",
525     "y_unit": "au",
526     "time_unit": "second",
527     "x_label": "x",
528     "y_label": "y",
529 }
530
531 column_density_plot.render_all(
532     **face_on_render_kwargs,
533     field_unit="kg.m^-2",
534     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
535     vmin=1,
536     vmax=1e7,
537     norm="log",
538 )
539
540 column_density_plot_hollywood.render_all(
541     **face_on_render_kwargs,
542     field_unit="kg.m^-2",
543     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
544     vmin=1,
545     vmax=1e7,
546     norm="log",
547     holywood_mode=True,
548 )
549
550 vertical_density_plot.render_all(
551     **face_on_render_kwargs,
552     field_unit="kg.m^-3",
553     field_label="$\\rho$",
554     vmin=1e-5,
555     vmax=1e-2,
556     norm="log",
557 )
558
559 dt_part_slice_plot.render_all(
560     **face_on_render_kwargs,
561     field_unit="second",
562     field_label="$\\Delta t$",
563     vmin=1e-2,
564     vmax=1e2,
565     norm="log",
566     contour_list=[1e-2, 1e-1, 1, 1e1, 1e2],
567 )
568
569 column_average_vz_plot.render_all(
570     **face_on_render_kwargs,
571     field_unit="lightspeed",
572     field_label="$\\langle v_z \\rangle_z$",
573     cmap="seismic",
574     cmap_bad_color="white",
575     vmin=-0.5,
576     vmax=0.5,
577 )
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000010.png

Make gif for the doc (plot_to_gif.py)#

Convert PNG sequence to Image sequence in mpl

586 import matplotlib.animation as animation
587 from shamrock.utils.plot import show_image_sequence
588
589 render_gif = True

Do it for rho integ

594 if render_gif:
595     ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
596     if ani is not None:
597         plt.show()

Same but in hollywood

602 if render_gif:
603     ani = column_density_plot_hollywood.render_gif(
604         gif_filename="rho_integ_hollywood.gif", save_animation=True
605     )
606     if ani is not None:
607         plt.show()

For the vertical density plot

612 if render_gif and shamrock.sys.world_rank() == 0:
613     ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
614     if ani is not None:
615         plt.show()

Make a gif from the plots

619 if render_gif and shamrock.sys.world_rank() == 0:
620     ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
621     if ani is not None:
622         plt.show()

Make a gif from the plots

626 if render_gif and shamrock.sys.world_rank() == 0:
627     ani = column_average_vz_plot.render_gif(
628         gif_filename="column_average_vz.gif", save_animation=True
629     )
630     if ani is not None:
631         plt.show()

helper function to load data from JSON files

636 def load_data_from_json(filename, key):
637     filepath = os.path.join(analysis_folder, filename)
638     with open(filepath, "r") as fp:
639         data = json.load(fp)[key]
640     t = [d["t"] for d in data]
641     values = [d[key] for d in data]
642     return t, values

load the json file for barycenter

647 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
648 barycenter_x = [d[0] for d in barycenter]
649 barycenter_y = [d[1] for d in barycenter]
650 barycenter_z = [d[2] for d in barycenter]
651
652 plt.figure(figsize=(8, 5), dpi=200)
653
654 plt.plot(t, barycenter_x)
655 plt.plot(t, barycenter_y)
656 plt.plot(t, barycenter_z)
657 plt.xlabel("t [seconds]")
658 plt.ylabel("barycenter")
659 plt.legend(["x", "y", "z"])
660 plt.savefig(analysis_folder + "barycenter.png")
661 plt.show()
run circular disc lense thirring

load the json file for disc_mass

665 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
666
667 plt.figure(figsize=(8, 5), dpi=200)
668
669 plt.plot(t, disc_mass)
670 plt.xlabel("t [seconds]")
671 plt.ylabel("disc_mass")
672 plt.savefig(analysis_folder + "disc_mass.png")
673 plt.show()
run circular disc lense thirring

load the json file for total_momentum

677 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
678 total_momentum_x = [d[0] for d in total_momentum]
679 total_momentum_y = [d[1] for d in total_momentum]
680 total_momentum_z = [d[2] for d in total_momentum]
681
682 plt.figure(figsize=(8, 5), dpi=200)
683
684 plt.plot(t, total_momentum_x)
685 plt.plot(t, total_momentum_y)
686 plt.plot(t, total_momentum_z)
687 plt.xlabel("t [seconds]")
688 plt.ylabel("total_momentum")
689 plt.legend(["x", "y", "z"])
690 plt.savefig(analysis_folder + "total_momentum.png")
691 plt.show()
run circular disc lense thirring

load the json file for energies

695 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
696 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
697
698 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
699
700 plt.figure(figsize=(8, 5), dpi=200)
701 plt.plot(t, potential_energy)
702 plt.plot(t, kinetic_energy)
703 plt.plot(t, total_energy)
704 plt.xlabel("t [seconds]")
705 plt.ylabel("energy")
706 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
707 plt.savefig(analysis_folder + "energies.png")
708 plt.show()
run circular disc lense thirring

Plot the performance history (Switch close_plots to True if doing a long run)

713 perf_analysis.plot_perf_history(close_plots=False)
714 plt.show()
  • run circular disc lense thirring
  • run circular disc lense thirring
  • run circular disc lense thirring
  • run circular disc lense thirring
  • run circular disc lense thirring
  • run circular disc lense thirring
  • run circular disc lense thirring
  • run circular disc lense thirring
Plotting perf history from _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json

Total running time of the script: (4 minutes 22.147 seconds)

Estimated memory usage: 979 MB

Gallery generated by Sphinx-Gallery