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 )

Use shamrock documentation style for matplotlib

60 shamrock.matplotlib.set_shamrock_mpl_style()

Setup units

66 si = shamrock.UnitSystem()
67 sicte = shamrock.Constants(si)
68 codeu = shamrock.UnitSystem(
69     unit_time=sicte.second(),
70     unit_length=sicte.au(),
71     unit_mass=sicte.sol_mass(),
72 )
73 ucte = shamrock.Constants(codeu)
74 G = ucte.G()
75 c = ucte.c()

List parameters

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

Create the dump directory if it does not exist

159 if shamrock.sys.world_rank() == 0:
160     os.makedirs(sim_folder, exist_ok=True)
161     os.makedirs(dump_folder, exist_ok=True)
162     os.makedirs(analysis_folder, exist_ok=True)
163     os.makedirs(plot_folder, exist_ok=True)

Utility functions and quantities deduced from the base one

168 # Deduced quantities
169 pmass = disc_mass / Npart
170
171 bsize = rout * 2
172 bmin = (-bsize, -bsize, -bsize)
173 bmax = (bsize, bsize, bsize)
174
175 cs0 = cs_profile(r0)
176
177
178 def rot_profile(r):
179     return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
180
181
182 def H_profile(r):
183     H = cs_profile(r) / omega_k(r)
184     # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
185     fact = 1.0
186     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

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

Dump handling

207 def get_vtk_dump_name(idump):
208     return dump_prefix + f"{idump:07}" + ".vtk"
209
210
211 def get_ph_dump_name(idump):
212     return dump_prefix + f"{idump:07}" + ".phdump"
213
214
215 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)

Load the last dump if it exists, setup otherwise

221 def setup_model():
222     global disc_mass
223
224     # Generate the default config
225     cfg = model.gen_default_config()
226     cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
227     cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
228
229     # cfg.add_ext_force_point_mass(center_mass, center_racc)
230
231     cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize)  # kill particles outside the simulation box
232     cfg.add_ext_force_lense_thirring(
233         central_mass=center_mass,
234         Racc=rin,
235         a_spin=0.9,
236         dir_spin=(np.sin(inclination), np.cos(inclination), 0.0),
237     )
238
239     cfg.set_units(codeu)
240     cfg.set_particle_mass(pmass)
241     # Set the CFL
242     cfg.set_cfl_cour(C_cour)
243     cfg.set_cfl_force(C_force)
244
245     # On a chaotic disc, we disable to two stage search to avoid giant leaves
246     cfg.set_tree_reduction_level(6)
247     cfg.set_two_stage_search(False)
248
249     # Enable this to debug the neighbor counts
250     # cfg.set_show_neigh_stats(True)
251
252     # Standard way to set the smoothing length (e.g. Price et al. 2018)
253     cfg.set_smoothing_length_density_based()
254
255     # Standard density based smoothing length but with a neighbor count limit
256     # Use it if you have large slowdowns due to giant particles
257     # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
258     # cfg.set_smoothing_length_density_based_neigh_lim(500)
259
260     cfg.set_save_dt_to_fields(True)
261
262     # Set the solver config to be the one stored in cfg
263     model.set_solver_config(cfg)
264
265     # Print the solver config
266     model.get_current_config().print_status()
267
268     # Init the scheduler & fields
269     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
270
271     # Set the simulation box size
272     model.resize_simulation_box(bmin, bmax)
273
274     # Create the setup
275
276     setup = model.get_setup()
277     gen_disc = setup.make_generator_disc_mc(
278         part_mass=pmass,
279         disc_mass=disc_mass,
280         r_in=rin,
281         r_out=rout,
282         sigma_profile=sigma_profile,
283         H_profile=H_profile,
284         rot_profile=rot_profile,
285         cs_profile=cs_profile,
286         random_seed=666,
287         init_h_factor=0.03,
288     )
289
290     # Print the dot graph of the setup
291     print(gen_disc.get_dot())
292
293     # Apply the setup
294     setup.apply_setup(gen_disc)
295
296     # correct the momentum and barycenter of the disc to 0
297     analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
298     total_momentum = analysis_momentum.get_total_momentum()
299
300     if shamrock.sys.world_rank() == 0:
301         print(f"disc momentum = {total_momentum}")
302
303     model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
304
305     # Correct the barycenter
306     analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
307     barycenter, disc_mass = analysis_barycenter.get_barycenter()
308
309     if shamrock.sys.world_rank() == 0:
310         print(f"disc barycenter = {barycenter}")
311
312     model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
313
314     total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
315
316     if shamrock.sys.world_rank() == 0:
317         print(f"disc momentum after correction = {total_momentum}")
318
319     barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
320
321     if shamrock.sys.world_rank() == 0:
322         print(f"disc barycenter after correction = {barycenter}")
323
324     if not np.allclose(total_momentum, 0.0):
325         raise RuntimeError("disc momentum is not 0")
326     if not np.allclose(barycenter, 0.0):
327         raise RuntimeError("disc barycenter is not 0")
328
329     # Run a single step to init the integrator and smoothing length of the particles
330     # Here the htolerance is the maximum factor of evolution of the smoothing length in each
331     # Smoothing length iterations, increasing it affect the performance negatively but increase the
332     # convergence rate of the smoothing length
333     # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
334     # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
335     # more slowly at the first timestep
336
337     model.change_htolerances(coarse=1.3, fine=1.1)
338     model.timestep()
339     model.change_htolerances(coarse=1.1, fine=1.1)
340
341
342 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,
        "dust_config": {
            "drag_mode": {
                "type": "none"
            },
            "mode": {
                "type": "none"
            }
        },
        "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_cfl_detail": false,
        "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
    }
]
------------------------------------
Warning: make_generator_disc_mc: with the current EOS, cs_profile is ignored     [SPHSetup][rank=0]
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 rank min = 3.0e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.341412355 s
SPH setup: final particle count = 100000 beginning injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.31 us   (84.5%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
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     : 1.98 us    (0.2%)
   patch tree reduce : 1.08 us    (0.1%)
   gen split merge   : 731.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 889.95 us  (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.4%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected       100000 / 100000 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.020523854 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.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.389016848 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.1954052321098364e-22, 0.0)
disc barycenter after correction = (-1.1372740805869067e-16, 4.552802091491864e-18, 4.570172884355478e-20)
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
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     : 5.24 us    (1.4%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 361.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
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.2738524452908477e-12,2.987363203572052e-13)
    sum e = 1.2794654215224175e-10
    sum de = 9.773894829384809e-17
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.9164e+04 | 99937 |      1 | 3.427e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

On the fly analysis

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

Evolve the simulation

485 model.solver_logs_reset_cumulated_step_time()
486 model.solver_logs_reset_step_count()
487
488 t_start = model.get_time()
489
490 idump = 0
491 iplot = 0
492 istop = 0
493 for ttarg in t_stop:
494     if ttarg >= t_start:
495         model.evolve_until(ttarg)
496
497         if istop % dump_freq_stop == 0:
498             model.do_vtk_dump(get_vtk_dump_name(idump), True)
499             dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
500
501             # dump = model.make_phantom_dump()
502             # dump.save_dump(get_ph_dump_name(idump))
503
504         if istop % plot_freq_stop == 0:
505             analysis(iplot)
506
507     if istop % dump_freq_stop == 0:
508         idump += 1
509
510     if istop % plot_freq_stop == 0:
511         iplot += 1
512
513     istop += 1
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 15.431812428 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
              - took 26.56 ms, bandwidth = 210.70 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     : 6.58 us    (60.4%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
              - took 6.50 ms, bandwidth = 1.97 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 766.96 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 737.07 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 301.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 298.11 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 452.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 450.99 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.029043184000000003 s
Info: compute_column_integ took 757.34 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 736.61 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
Info: evolve_until (target_time = 24.76s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 0, dt = 0.015168073714520974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99937.0 min = 99937.0 factor = 1
 - strategy "round robin" : max = 94940.1 min = 94940.1 factor = 0.95
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.25 us    (1.1%)
   patch tree reduce : 1.75 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 552.25 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.2%)
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.531254528384217e-15)
    sum a = (-1.2220481889570355e-11,1.2658497411658693e-12,3.0470649101029276e-13)
    sum e = 1.2794654644004925e-10
    sum de = 9.803644478106684e-17
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    | 2.2155e+05 | 99937 |      1 | 4.511e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.05224343717228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.015168073714520974, dt = 0.5157187331159753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99937.0 min = 99937.0 factor = 1
 - strategy "round robin" : max = 94940.1 min = 94940.1 factor = 0.95
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     : 5.96 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 371.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4154980140723405e-10,3.423206389310801e-10,1.617193780387299e-13)
    sum a = (-1.2396913900990976e-11,9.90450841480306e-13,5.084886241385408e-13)
    sum e = 1.2794983717466656e-10
    sum de = 1.07744762806745e-16
Info: cfl dt = 0.8496983445513998 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    | 2.1924e+05 | 99937 |      1 | 4.558e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4072.9438313695755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5308868068304963, dt = 0.8496983445513998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99937.0 min = 99937.0 factor = 1
 - strategy "round robin" : max = 94940.1 min = 94940.1 factor = 0.95
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     : 5.72 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 355.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.397776438385988e-10,3.3838887997362093e-10,4.908859063543521e-13)
    sum a = (-1.2546444515712495e-11,7.478768075589297e-13,7.371097880653602e-13)
    sum e = 1.2795050719555384e-10
    sum de = 1.1750090085628137e-16
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    | 2.2588e+05 | 99936 |      1 | 4.424e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6913.810210655724 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.380585151381896, dt = 1.0730433663314185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99936.0 min = 99936.0 factor = 1
 - strategy "round robin" : max = 94939.2 min = 94939.2 factor = 0.95
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.09 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 351.91 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2619664396704665e-10,3.389913799817497e-10,1.426797650895223e-12)
    sum a = (-1.2869345151308501e-11,1.3692231015683682e-13,1.1672042914892002e-12)
    sum e = 1.2795587578055205e-10
    sum de = 1.3662387564433038e-16
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    | 2.2745e+05 | 99936 |      1 | 4.394e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8791.780692748313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4536285177133146, dt = 1.223043205925452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99936.0 min = 99936.0 factor = 1
 - strategy "round robin" : max = 94939.2 min = 94939.2 factor = 0.95
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     : 5.02 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 355.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.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.1966473579559065e-10,3.354682680593522e-10,2.666217137953847e-12)
    sum a = (-1.3108114429775684e-11,-3.531814248092375e-13,1.5442356138574116e-12)
    sum e = 1.2795528268751318e-10
    sum de = 1.5301843573802785e-16
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    | 2.2752e+05 | 99935 |      1 | 4.392e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10024.294375056927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6766717236387665, dt = 1.3245092407491843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99935.0 min = 99935.0 factor = 1
 - strategy "round robin" : max = 94938.2 min = 94938.2 factor = 0.95
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.5%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 356.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (71.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.010611665656914734 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1171735475326825e-10,3.3698328978691004e-10,4.563519739642104e-12)
    sum a = (-1.34765547670887e-11,-9.272313138546062e-13,1.993415211423627e-12)
    sum e = 1.2795372507569817e-10
    sum de = 1.7319563101828037e-16
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.4058e+05 | 99934 |      1 | 7.109e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6707.633022391274 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.001180964387951, dt = 1.3939537488109208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99934.0 min = 99934.0 factor = 1
 - strategy "round robin" : max = 94937.3 min = 94937.3 factor = 0.95
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     : 5.41 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 343.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.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.01061139788544668 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1097886077808805e-10,3.299567507898672e-10,6.32701139500826e-12)
    sum a = (-1.3615722361658975e-11,-1.3597280820425897e-12,2.3436200683680856e-12)
    sum e = 1.2794634322945336e-10
    sum de = 1.8839869761717558e-16
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.3897e+05 | 99932 |      1 | 7.191e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6978.366624806038 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.395134713198871, dt = 1.442347038717024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99932.0 min = 99932.0 factor = 1
 - strategy "round robin" : max = 94935.4 min = 94935.4 factor = 0.95
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     : 5.76 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 363.08 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.20 us    (70.4%)
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.311529010812668e-12)
    sum a = (-1.4001985435411848e-11,-1.6930303038072087e-12,2.7073715986180855e-12)
    sum e = 1.2793347609225978e-10
    sum de = 2.0338183056351273e-16
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.4059e+05 | 99929 |      1 | 7.108e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7305.070732930878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.837481751915895, dt = 1.4769780485630863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99929.0 min = 99929.0 factor = 1
 - strategy "round robin" : max = 94932.5 min = 94932.5 factor = 0.95
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.62 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 316.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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 = (3.0339401849113146e-10,3.3466663660719947e-10,1.2042801252487501e-11)
    sum a = (-1.4303328136039167e-11,-2.489390292785152e-12,3.2288309078373717e-12)
    sum e = 1.2793012111333e-10
    sum de = 2.2963225746299294e-16
Info: cfl dt = 1.5026775208521521 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    | 2.2764e+05 | 99928 |      1 | 4.390e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12112.880011896166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.314459800478982, dt = 1.5026775208521521 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99928.0 min = 99928.0 factor = 1
 - strategy "round robin" : max = 94931.6 min = 94931.6 factor = 0.95
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     : 5.12 us    (1.3%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 361.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.4%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0125000743567864e-10,3.2648760806240255e-10,1.495304425192895e-11)
    sum a = (-1.4334896196094242e-11,-3.0555427680612824e-12,3.6006877234121618e-12)
    sum e = 1.2792145295548736e-10
    sum de = 2.483842954325362e-16
Info: cfl dt = 1.522635993303095 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    | 2.2860e+05 | 99926 |      1 | 4.371e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12375.353375811232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.817137321331135, dt = 1.522635993303095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99926.0 min = 99926.0 factor = 1
 - strategy "round robin" : max = 94929.7 min = 94929.7 factor = 0.95
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     : 5.12 us    (0.6%)
   patch tree reduce : 1.27 us    (0.2%)
   gen split merge   : 831.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.1%)
   LB compute        : 789.06 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.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.01061024201962138 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0670903321485217e-10,3.1599747064933693e-10,1.708197136040551e-11)
    sum a = (-1.4271822182841472e-11,-3.4464942945887567e-12,3.882565935217032e-12)
    sum e = 1.279075942281386e-10
    sum de = 2.627590386227751e-16
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.4133e+05 | 99923 |      1 | 7.070e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7752.825375439529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.339773314634229, dt = 1.538966252020931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99923.0 min = 99923.0 factor = 1
 - strategy "round robin" : max = 94926.8 min = 94926.8 factor = 0.95
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     : 5.42 us    (1.4%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 361.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.8%)
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.550508194157094e-10,3.3584480601157323e-10,1.4467991494612817e-11)
    sum a = (-1.495369805587031e-11,-2.76740838929004e-12,3.908486550393647e-12)
    sum e = 1.2786908093742386e-10
    sum de = 2.492229332974799e-16
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.4126e+05 | 99915 |      1 | 7.073e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7833.123067827711 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.87873956665516, dt = 1.5530429962979755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99915.0 min = 99915.0 factor = 1
 - strategy "round robin" : max = 94919.2 min = 94919.2 factor = 0.95
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     : 5.36 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 353.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.2%)
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.514032370240272e-10,3.453641401522158e-10,1.863221744867116e-11)
    sum a = (-1.532493090890589e-11,-3.4392694531938136e-12,4.3731381914722815e-12)
    sum e = 1.2785515939768162e-10
    sum de = 2.7133035995912034e-16
Info: cfl dt = 1.565715642805069 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    | 2.2827e+05 | 99912 |      1 | 4.377e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12773.612049860612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.431782562953135, dt = 1.565715642805069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99912.0 min = 99912.0 factor = 1
 - strategy "round robin" : max = 94916.4 min = 94916.4 factor = 0.95
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.11 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 355.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (68.5%)
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.639151600681925e-10,3.386235687805353e-10,1.938735279395557e-11)
    sum a = (-1.5240166816727456e-11,-3.695675486995056e-12,4.5825391247272056e-12)
    sum e = 1.2783611331344856e-10
    sum de = 2.816064182647522e-16
Info: cfl dt = 1.5775230867361443 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.4202e+05 | 99908 |      1 | 7.035e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8012.520831239013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.997498205758205, dt = 1.5775230867361443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99908.0 min = 99908.0 factor = 1
 - strategy "round robin" : max = 94912.6 min = 94912.6 factor = 0.95
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     : 5.27 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 346.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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 = (3.7497527704849017e-10,3.281192135843208e-10,2.0065420249961878e-11)
    sum a = (-1.5013670241093568e-11,-3.9869647351044794e-12,4.778013442099614e-12)
    sum e = 1.2781698944663394e-10
    sum de = 2.922351720604745e-16
Info: cfl dt = 1.5888092026933969 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    | 2.2802e+05 | 99904 |      1 | 4.381e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12961.67002972869 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.57502129249435, dt = 1.5888092026933969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99904.0 min = 99904.0 factor = 1
 - strategy "round robin" : max = 94908.8 min = 94908.8 factor = 0.95
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.28 us    (1.3%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 376.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (69.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.512125864947771e-10,3.2081857314944466e-10,2.8081283451667057e-11)
    sum a = (-1.480742660365663e-11,-5.207833347740494e-12,5.273899688827625e-12)
    sum e = 1.2781793042093798e-10
    sum de = 3.330387307233543e-16
Info: cfl dt = 1.5997980125097766 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    | 2.2765e+05 | 99904 |      1 | 4.388e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13033.507274658568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.163830495187746, dt = 1.5997980125097766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99904.0 min = 99904.0 factor = 1
 - strategy "round robin" : max = 94908.8 min = 94908.8 factor = 0.95
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.28 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 350.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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 = (3.4745969178552206e-10,3.201899559327194e-10,3.290417146868507e-11)
    sum a = (-1.472903445887893e-11,-5.895915164352568e-12,5.603750644712129e-12)
    sum e = 1.278039950036537e-10
    sum de = 3.539844656950946e-16
Info: cfl dt = 1.6105779517886643 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    | 2.2859e+05 | 99901 |      1 | 4.370e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13178.32954414669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.763628507697522, dt = 1.6105779517886643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99901.0 min = 99901.0 factor = 1
 - strategy "round robin" : max = 94905.9 min = 94905.9 factor = 0.95
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     : 4.76 us    (1.2%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 372.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.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.010608036907960739 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.436057609916349e-10,3.4114194939575e-10,3.9168179998781435e-11)
    sum a = (-1.5148847996470548e-11,-6.593981203348365e-12,6.017291810449905e-12)
    sum e = 1.2778533911396156e-10
    sum de = 3.712770334979891e-16
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.4184e+05 | 99897 |      1 | 7.043e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8232.518697566507 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.374206459486185, dt = 1.3847656730649582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99897.0 min = 99897.0 factor = 1
 - strategy "round robin" : max = 94902.1 min = 94902.1 factor = 0.95
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     : 5.22 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 302.50 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.5%)
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.010607754731889607 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4420417681516477e-10,3.4714541341651593e-10,4.341060726595557e-11)
    sum a = (-1.5182045490213194e-11,-7.052006597037829e-12,6.260239091954812e-12)
    sum e = 1.2775293302721254e-10
    sum de = 3.7500879238214016e-16
Info: cfl dt = 1.6300056949728796 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.4115e+05 | 99892 |      1 | 7.077e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7044.019103399069 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 30.723760944000002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
              - took 5.19 ms, bandwidth = 1.08 GB/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     : 5.80 us    (55.5%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
              - took 4.50 ms, bandwidth = 2.84 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 760.89 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 731.63 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 291.16 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 291.39 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 446.05 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 440.75 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.022901536 s
Info: compute_column_integ took 749.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 736.00 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
Info: evolve_until (target_time = 49.52s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 24.758972132551143, dt = 1.6300056949728796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99892.0 min = 99892.0 factor = 1
 - strategy "round robin" : max = 94897.4 min = 94897.4 factor = 0.95
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     : 6.43 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 405.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.010607421029968471 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.453486593294558e-10,3.4739276870615956e-10,4.7541406134334224e-11)
    sum a = (-1.5029976380007628e-11,-7.560282687630226e-12,6.4698670567272286e-12)
    sum e = 1.2773752477746857e-10
    sum de = 3.7671557704483075e-16
Info: cfl dt = 1.6400474445508377 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.3328e+05 | 99887 |      1 | 7.495e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7829.750183796495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.388977827524023, dt = 1.6400474445508377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99887.0 min = 99887.0 factor = 1
 - strategy "round robin" : max = 94892.6 min = 94892.6 factor = 0.95
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     : 5.28 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 380.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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 = (3.477973058354211e-10,3.3491109388868507e-10,5.088902963185392e-11)
    sum a = (-1.45017782376268e-11,-8.045017110675633e-12,6.575448433090198e-12)
    sum e = 1.2772345056566277e-10
    sum de = 3.973308664103453e-16
Info: cfl dt = 1.6498433618725794 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    | 2.0312e+05 | 99884 |      1 | 4.918e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12006.202985533413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.02902527207486, dt = 1.6498433618725794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99884.0 min = 99884.0 factor = 1
 - strategy "round robin" : max = 94889.8 min = 94889.8 factor = 0.95
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     : 5.06 us    (1.2%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 394.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.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.01060674239211529 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1361233279520325e-10,3.6026328533078447e-10,6.668532314248761e-11)
    sum a = (-1.490129477564892e-11,-9.548798466989386e-12,7.098372788030583e-12)
    sum e = 1.277000024945574e-10
    sum de = 4.0629067410242575e-16
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.4198e+05 | 99879 |      1 | 7.035e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8442.99418519324 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 29.67886863394744, dt = 1.6546564921125826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99879.0 min = 99879.0 factor = 1
 - strategy "round robin" : max = 94885.0 min = 94885.0 factor = 0.95
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     : 5.54 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 358.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.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.01060639848236238 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9385883321917174e-10,3.641737032045497e-10,7.811209625137582e-11)
    sum a = (-1.4707585901124648e-11,-1.0593077284584284e-11,7.371481753743425e-12)
    sum e = 1.2768106513582691e-10
    sum de = 4.1646461242126535e-16
Info: cfl dt = 1.6472343206170608 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.3641e+05 | 99875 |      1 | 7.322e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8135.720867236598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 31.333525126060024, dt = 1.6472343206170608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99875.0 min = 99875.0 factor = 1
 - strategy "round robin" : max = 94881.2 min = 94881.2 factor = 0.95
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     : 5.48 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 345.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.5%)
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.010606054393847925 unconverged cnt = 3
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010606054393847925 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9534263372480036e-10,3.804386865490224e-10,8.328901432196346e-11)
    sum a = (-1.4828824298704404e-11,-1.1088718295521902e-11,7.517040425920817e-12)
    sum e = 1.2764656327061972e-10
    sum de = 4.084808321643137e-16
Info: cfl dt = 1.598818912951925 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    | 1.0265e+05 | 99868 |      1 | 9.729e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6095.371146264505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 32.980759446677084, dt = 1.598818912951925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99868.0 min = 99868.0 factor = 1
 - strategy "round robin" : max = 94874.6 min = 94874.6 factor = 0.95
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     : 4.97 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 347.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (69.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.010605718774228794 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7133447912326825e-10,3.713103736044831e-10,9.63528156262813e-11)
    sum a = (-1.4251107101409993e-11,-1.2196849320528255e-11,7.665639653964385e-12)
    sum e = 1.2762036518009438e-10
    sum de = 4.0523064660197747e-16
Info: cfl dt = 1.5709754897161181 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.4099e+05 | 99863 |      1 | 7.083e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8125.981272304444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 34.57957835962901, dt = 1.5709754897161181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99863.0 min = 99863.0 factor = 1
 - strategy "round robin" : max = 94869.8 min = 94869.8 factor = 0.95
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.44 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 302.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.01060538741951527 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.721844825379193e-10,3.525398948522238e-10,1.0102250027700277e-10)
    sum a = (-1.341823027746693e-11,-1.2549089817779492e-11,7.5694906883335e-12)
    sum e = 1.2759975893831572e-10
    sum de = 4.0686449483897865e-16
Info: cfl dt = 1.5331830555669363 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.4251e+05 | 99859 |      1 | 7.007e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8070.846254787241 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 36.15055384934513, dt = 1.5331830555669363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99859.0 min = 99859.0 factor = 1
 - strategy "round robin" : max = 94866.0 min = 94866.0 factor = 0.95
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.28 us    (1.4%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 352.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.9%)
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.01060506252431719 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6595650249247143e-10,3.480059875735094e-10,1.0801886531655517e-10)
    sum a = (-1.2943739935253953e-11,-1.3091238424882718e-11,7.551397141503943e-12)
    sum e = 1.275838977143664e-10
    sum de = 4.211744346663828e-16
Info: cfl dt = 1.6805217671025203 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.3697e+05 | 99856 |      1 | 7.290e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7571.175611624734 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 37.68373690491207, dt = 1.6805217671025203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99856.0 min = 99856.0 factor = 1
 - strategy "round robin" : max = 94863.2 min = 94863.2 factor = 0.95
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     : 4.68 us    (1.2%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 361.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.010604704689100629 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1740313767605318e-10,3.6069292031315435e-10,1.3063471347780487e-10)
    sum a = (-1.2892545260141248e-11,-1.4873521972439573e-11,7.798836754624569e-12)
    sum e = 1.2756051428640942e-10
    sum de = 3.987385045452241e-16
Info: cfl dt = 1.6861958353792796 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.3931e+05 | 99850 |      1 | 7.167e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8440.919649248144 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 39.364258672014586, dt = 1.6861958353792796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99850.0 min = 99850.0 factor = 1
 - strategy "round robin" : max = 94857.5 min = 94857.5 factor = 0.95
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     : 5.66 us    (1.4%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 378.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (71.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.010604343838109036 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.871895034461767e-10,3.7224529269166633e-10,1.4737133033226962e-10)
    sum a = (-1.2727566595694338e-11,-1.6069190310841123e-11,7.894355762817156e-12)
    sum e = 1.2752652447388997e-10
    sum de = 3.7550065073582216e-16
Info: cfl dt = 1.669015825506748 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.3493e+05 | 99843 |      1 | 7.399e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8203.785767114714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 41.050454507393866, dt = 1.669015825506748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99843.0 min = 99843.0 factor = 1
 - strategy "round robin" : max = 94850.8 min = 94850.8 factor = 0.95
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     : 5.50 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 316.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.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.01060398487850819 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.826371557692979e-10,3.7419934284329224e-10,1.5470263133354204e-10)
    sum a = (-1.2318011314907543e-11,-1.648500970999268e-11,7.781887961305002e-12)
    sum e = 1.274913623829917e-10
    sum de = 3.5198020709415356e-16
Info: cfl dt = 1.6585880589874946 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.3652e+05 | 99836 |      1 | 7.313e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8216.207726757159 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 42.71947033290061, dt = 1.6585880589874946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99836.0 min = 99836.0 factor = 1
 - strategy "round robin" : max = 94844.2 min = 94844.2 factor = 0.95
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.18 us    (1.3%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 387.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.0%)
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.010603626400156713 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5701677282453225e-10,3.819884732979686e-10,1.69537890668481e-10)
    sum a = (-1.2061695821131663e-11,-1.7427417067818383e-11,7.763952493956888e-12)
    sum e = 1.2745143133913295e-10
    sum de = 3.055096574607779e-16
Info: cfl dt = 1.6538931532280092 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.3545e+05 | 99828 |      1 | 7.370e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8101.603619536605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 44.37805839188811, dt = 1.6538931532280092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99828.0 min = 99828.0 factor = 1
 - strategy "round robin" : max = 94836.6 min = 94836.6 factor = 0.95
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     : 12.21 us   (3.1%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 367.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.7%)
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.010603267186255257 unconverged cnt = 17
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3078277574708445e-10,3.9638525248077525e-10,1.842024256706539e-10)
    sum a = (-1.1996321355491508e-11,-1.8377952947312298e-11,7.741974165261918e-12)
    sum e = 1.27376354373024e-10
    sum de = 1.9544090726349298e-16
Info: cfl dt = 1.6542767468802662 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.4649e+05 | 99813 |      1 | 6.814e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8738.46418800045 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 46.03195154511612, dt = 1.6542767468802662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99813.0 min = 99813.0 factor = 1
 - strategy "round robin" : max = 94822.3 min = 94822.3 factor = 0.95
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     : 5.34 us    (1.4%)
   patch tree reduce : 22.38 us   (5.8%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 343.46 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (71.1%)
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.010602906140125939 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.966077401392759e-11,3.789220313077898e-10,2.0512686224236242e-10)
    sum a = (-1.112110361864246e-11,-1.9707361829816705e-11,7.536319578271157e-12)
    sum e = 1.2734151680368472e-10
    sum de = 1.380405328732882e-16
Info: cfl dt = 1.6592659299552968 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.3991e+05 | 99806 |      1 | 7.134e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8348.37135994133 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 47.686228291996386, dt = 1.6592659299552968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99806.0 min = 99806.0 factor = 1
 - strategy "round robin" : max = 94815.7 min = 94815.7 factor = 0.95
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     : 4.85 us    (1.2%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 370.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.4%)
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.010602542248087592 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.167710424467724e-11,3.550098356078264e-10,2.134390652713702e-10)
    sum a = (-1.0041626498802162e-11,-2.0038699529720643e-11,7.12240186694462e-12)
    sum e = 1.2732667334779354e-10
    sum de = 1.3191827165896699e-16
Info: cfl dt = 1.7540053481494964 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.5061e+05 | 99803 |      1 | 6.627e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9014.251235231011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 49.34549422195168, dt = 0.17245004315060442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99803.0 min = 99803.0 factor = 1
 - strategy "round robin" : max = 94812.8 min = 94812.8 factor = 0.95
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.58 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 377.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.8%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.87971457310755e-11,3.6569659390472376e-10,2.1860666501829523e-10)
    sum a = (-1.0311107259460552e-11,-2.0443158099907304e-11,7.214727403583052e-12)
    sum e = 1.272847995488821e-10
    sum de = 1.1642216174957374e-16
Info: cfl dt = 1.755446243489958 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    | 2.4381e+05 | 99801 |      1 | 4.093e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1516.6259012394867 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 46.578039841000006 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
              - took 5.20 ms, bandwidth = 1.07 GB/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     : 5.91 us    (55.0%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
              - took 4.56 ms, bandwidth = 2.80 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 730.87 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 728.32 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 284.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 283.80 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 431.06 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 430.27 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.021779115 s
Info: compute_column_integ took 744.69 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 729.68 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
Info: evolve_until (target_time = 74.28s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 49.51794426510229, dt = 1.755446243489958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99801.0 min = 99801.0 factor = 1
 - strategy "round robin" : max = 94810.9 min = 94810.9 factor = 0.95
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.62 us    (1.6%)
   patch tree reduce : 1.83 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 387.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.070864309282348e-11,3.2980570175365205e-10,2.3126736615005605e-10)
    sum a = (-8.883067542997862e-12,-2.0972998248774606e-11,6.68054663539467e-12)
    sum e = 1.273208074227358e-10
    sum de = 1.2535582633347767e-16
Info: cfl dt = 1.7268140887492558 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    | 2.3859e+05 | 99801 |      1 | 4.183e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15108.07190268174 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 51.27339050859224, dt = 1.7268140887492558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99801.0 min = 99801.0 factor = 1
 - strategy "round robin" : max = 94810.9 min = 94810.9 factor = 0.95
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     : 5.13 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 390.95 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.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.010601734531104946 unconverged cnt = 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.490205595882896e-11,3.067711271429182e-10,2.383791554452069e-10)
    sum a = (-7.838433742973591e-12,-2.118047259222191e-11,6.172357074126968e-12)
    sum e = 1.2728418569446716e-10
    sum de = 8.36734822409057e-17
Info: cfl dt = 1.7338846344853054 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.5135e+05 | 99794 |      1 | 6.594e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9428.225242239954 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 53.0002045973415, dt = 1.7338846344853054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99794.0 min = 99794.0 factor = 1
 - strategy "round robin" : max = 94804.3 min = 94804.3 factor = 0.95
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     : 5.33 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 344.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (66.1%)
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.0106013483451682 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0253485458464676e-11,2.892597359233751e-10,2.5665888599227477e-10)
    sum a = (-6.924542967839931e-12,-2.213128912476424e-11,5.732851959103455e-12)
    sum e = 1.2725442080305803e-10
    sum de = 4.423706559071046e-17
Info: cfl dt = 1.6737594246559546 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.5256e+05 | 99788 |      1 | 6.541e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9542.88653237922 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 54.73408923182681, dt = 1.6737594246559546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99788.0 min = 99788.0 factor = 1
 - strategy "round robin" : max = 94798.6 min = 94798.6 factor = 0.95
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     : 5.06 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 372.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.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.01060097372902593 unconverged cnt = 5
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2193851799687177e-11,2.6517736874208315e-10,2.743876756309565e-10)
    sum a = (-5.899464140538811e-12,-2.2991251147584978e-11,5.224505859409489e-12)
    sum e = 1.272267938909739e-10
    sum de = 8.200124069554554e-18
Info: cfl dt = 1.6220994124312387 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.4956e+05 | 99783 |      1 | 6.672e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9031.147555972904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 56.40784865648276, dt = 1.6220994124312387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99783.0 min = 99783.0 factor = 1
 - strategy "round robin" : max = 94793.8 min = 94793.8 factor = 0.95
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     : 5.13 us    (1.2%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 400.55 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.010600608967979583 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.37623736120804e-11,2.4118215925669937e-10,2.830822158483716e-10)
    sum a = (-4.906891744049702e-12,-2.3164382064674577e-11,4.656335667389709e-12)
    sum e = 1.2719933894502467e-10
    sum de = -3.827141060567041e-17
Info: cfl dt = 1.6457489243166654 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.5546e+05 | 99778 |      1 | 6.418e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9098.553237883747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 58.029948068914, dt = 1.6457489243166654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99778.0 min = 99778.0 factor = 1
 - strategy "round robin" : max = 94789.1 min = 94789.1 factor = 0.95
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     : 4.87 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 359.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.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.010600237171810923 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.051698778472514e-11,2.0561874399698643e-10,2.8607727301022667e-10)
    sum a = (-3.6063667581469106e-12,-2.2866746906074146e-11,3.925225296439908e-12)
    sum e = 1.2717459881816886e-10
    sum de = -8.648730837574838e-17
Info: cfl dt = 1.5939164529002 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.4849e+05 | 99773 |      1 | 6.719e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8817.480127907607 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 59.675696993230666, dt = 1.5939164529002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99773.0 min = 99773.0 factor = 1
 - strategy "round robin" : max = 94784.3 min = 94784.3 factor = 0.95
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.43 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 340.02 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.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.010599875437122852 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2367357329466214e-11,1.738154043244371e-10,2.98165778960255e-10)
    sum a = (-2.462393351477087e-12,-2.3286921966686617e-11,3.2458122839050835e-12)
    sum e = 1.2714215668412008e-10
    sum de = -1.405126664195297e-16
Info: cfl dt = 1.677723851936652 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.4325e+05 | 99767 |      1 | 6.964e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8239.242959687523 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 61.26961344613087, dt = 1.677723851936652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99767.0 min = 99767.0 factor = 1
 - strategy "round robin" : max = 94778.6 min = 94778.6 factor = 0.95
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.63 us    (0.6%)
   patch tree reduce : 1.66 us    (0.2%)
   gen split merge   : 1.20 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.1%)
   LB compute        : 919.00 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.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.010599492931192398 unconverged cnt = 5
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7882904031606785e-11,1.6442939714394577e-10,3.0233030266793135e-10)
    sum a = (-1.8860206812732227e-12,-2.3166270892997317e-11,2.733144709295121e-12)
    sum e = 1.271093008491085e-10
    sum de = -2.028276927037361e-16
Info: cfl dt = 1.6127666975910004 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.4701e+05 | 99760 |      1 | 6.786e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8900.487337197463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 62.947337298067524, dt = 1.6127666975910004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99760.0 min = 99760.0 factor = 1
 - strategy "round robin" : max = 94772.0 min = 94772.0 factor = 0.95
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     : 5.52 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 316.57 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (70.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.601659644487909e-11,1.3541465540006278e-10,3.155199844482624e-10)
    sum a = (-8.635623528003241e-13,-2.3678838268687586e-11,2.0436447611347484e-12)
    sum e = 1.2709116234651191e-10
    sum de = -2.388978885224737e-16
Info: cfl dt = 1.5576092246017976 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    | 2.3589e+05 | 99757 |      1 | 4.229e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13729.028643664666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 64.56010399565852, dt = 1.5576092246017976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99757.0 min = 99757.0 factor = 1
 - strategy "round robin" : max = 94769.1 min = 94769.1 factor = 0.95
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     : 5.33 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 336.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.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.01059876521221734 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1809623152892458e-10,1.0642708129616131e-10,3.302039981887956e-10)
    sum a = (1.1354532615486762e-13,-2.4272023389235662e-11,1.3548735457032393e-12)
    sum e = 1.270685691000927e-10
    sum de = -2.831002087991967e-16
Info: cfl dt = 1.509634501946505 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.6015e+05 | 99753 |      1 | 6.229e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9002.313863592615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 66.11771322026031, dt = 1.509634501946505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99753.0 min = 99753.0 factor = 1
 - strategy "round robin" : max = 94765.3 min = 94765.3 factor = 0.95
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     : 4.82 us    (1.3%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 353.98 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.01059841644311827 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2731803869133258e-10,8.39646141438726e-11,3.3512067893146924e-10)
    sum a = (9.469802944996874e-13,-2.416345060362733e-11,7.197360110682577e-13)
    sum e = 1.2705637818031226e-10
    sum de = -2.907064886344288e-16
Info: cfl dt = 1.4673317140921458 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.6026e+05 | 99751 |      1 | 6.224e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8731.200928514301 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 67.62734772220682, dt = 1.4673317140921458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99751.0 min = 99751.0 factor = 1
 - strategy "round robin" : max = 94763.4 min = 94763.4 factor = 0.95
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     : 5.13 us    (1.3%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 388.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (70.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.3416000419042345e-10,5.123975272954801e-11,3.3899820182291955e-10)
    sum a = (1.9911796486942984e-12,-2.3973888452059912e-11,-3.0414807519045774e-14)
    sum e = 1.270494539573502e-10
    sum de = -2.977138906840708e-16
Info: cfl dt = 1.4565392835549336 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    | 2.5491e+05 | 99750 |      1 | 3.913e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13499.252606174541 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 69.09467943629896, dt = 1.4565392835549336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99750.0 min = 99750.0 factor = 1
 - strategy "round robin" : max = 94762.5 min = 94762.5 factor = 0.95
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     : 5.17 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 326.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.94 us   (95.2%)
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.010597736815838704 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3127063985334585e-10,3.877861184912461e-11,3.3833880480327256e-10)
    sum a = (2.506501744385539e-12,-2.344578579223478e-11,-5.397174542166742e-13)
    sum e = 1.270129322991812e-10
    sum de = -3.6914542793399895e-16
Info: cfl dt = 1.4134768548802696 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.5606e+05 | 99743 |      1 | 6.391e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8204.038572438534 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 70.55121871985389, dt = 1.4134768548802696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99743.0 min = 99743.0 factor = 1
 - strategy "round robin" : max = 94755.8 min = 94755.8 factor = 0.95
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     : 5.07 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 336.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.9%)
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.010597406314493792 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.403312016310822e-10,1.3904200129235589e-11,3.422098501216167e-10)
    sum a = (3.2880922874036158e-12,-2.3269785591958463e-11,-1.1849129266100557e-12)
    sum e = 1.2698038553858336e-10
    sum de = -4.1948542182521634e-16
Info: cfl dt = 1.5378701725366966 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.5692e+05 | 99737 |      1 | 6.356e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8006.188277187593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 71.96469557473417, dt = 1.5378701725366966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99737.0 min = 99737.0 factor = 1
 - strategy "round robin" : max = 94750.1 min = 94750.1 factor = 0.95
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     : 5.49 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 375.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (71.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.010597045282245856 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6876238795438373e-10,-8.669186082300856e-12,3.523042784276406e-10)
    sum a = (3.957173671524877e-12,-2.3602594842836155e-11,-1.8274639822640677e-12)
    sum e = 1.2696355876055074e-10
    sum de = -4.791436972902485e-16
Info: cfl dt = 1.6806971842628888 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.5883e+05 | 99733 |      1 | 6.279e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8817.009253543614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 73.50256574727086, dt = 0.7743506503825586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99733.0 min = 99733.0 factor = 1
 - strategy "round robin" : max = 94746.3 min = 94746.3 factor = 0.95
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.38 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 329.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.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.010596862924306194 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6510883649784983e-10,-1.973164169037203e-11,3.506585090201346e-10)
    sum a = (4.322213056295505e-12,-2.3224917318285816e-11,-2.140028576333338e-12)
    sum e = 1.2691755080394083e-10
    sum de = -5.139823435885561e-16
Info: cfl dt = 1.64675192223796 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.5600e+05 | 99728 |      1 | 6.393e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4360.687869169917 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 52                                                      [SPH][rank=0]
Info: time since start : 60.851322465 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
              - took 5.53 ms, bandwidth = 1.01 GB/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     : 6.04 us    (55.8%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
              - took 4.51 ms, bandwidth = 2.83 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 731.56 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 731.63 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 283.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 286.66 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 428.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 429.42 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.021147904000000002 s
Info: compute_column_integ took 745.97 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 737.31 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
Info: evolve_until (target_time = 99.04s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 74.27691639765342, dt = 1.64675192223796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99728.0 min = 99728.0 factor = 1
 - strategy "round robin" : max = 94741.6 min = 94741.6 factor = 0.95
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     : 6.47 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 375.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (68.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.010596473845971897 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6724981621757274e-10,-5.625922110169308e-11,3.5035037274995014e-10)
    sum a = (5.34607136147085e-12,-2.2682590867738462e-11,-2.991421726781866e-12)
    sum e = 1.2693570317981726e-10
    sum de = -5.303399602203832e-16
Info: cfl dt = 1.5748936129684035 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.5441e+05 | 99727 |      1 | 6.459e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9179.05265870286 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 75.92366831989138, dt = 1.5748936129684035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99727.0 min = 99727.0 factor = 1
 - strategy "round robin" : max = 94740.6 min = 94740.6 factor = 0.95
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.71 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 360.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.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.7367820475041423e-10,-8.680827360045608e-11,3.504747995569614e-10)
    sum a = (6.176148310920467e-12,-2.2275835668235925e-11,-3.74064710587707e-12)
    sum e = 1.2691167381234935e-10
    sum de = -5.786886227570901e-16
Info: cfl dt = 1.6291353447362524 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    | 2.5143e+05 | 99723 |      1 | 3.966e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14294.587991041744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 77.49856193285979, dt = 1.6291353447362524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99723.0 min = 99723.0 factor = 1
 - strategy "round robin" : max = 94736.8 min = 94736.8 factor = 0.95
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.11 us    (1.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 378.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.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 = (-1.745579710587459e-10,-1.1587295749732827e-10,3.4771230987865026e-10)
    sum a = (6.9651930137226705e-12,-2.1688964499950283e-11,-4.483082764110597e-12)
    sum e = 1.2689717584676414e-10
    sum de = -6.078839841149589e-16
Info: cfl dt = 1.6033967439450632 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.3275e+05 | 99720 |      1 | 4.284e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13689.08647524722 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 79.12769727759604, dt = 1.6033967439450632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99720.0 min = 99720.0 factor = 1
 - strategy "round robin" : max = 94734.0 min = 94734.0 factor = 0.95
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     : 5.13 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 356.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.1%)
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.010595328083619748 unconverged cnt = 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0375765009941344e-10,-1.7118117976547724e-10,3.5519594760697825e-10)
    sum a = (8.281117556216146e-12,-2.1868749894486324e-11,-5.54351643058204e-12)
    sum e = 1.2685932071157844e-10
    sum de = -6.954213832250551e-16
Info: cfl dt = 1.549819219815666 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.6213e+05 | 99713 |      1 | 6.150e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9385.30511530333 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 80.73109402154111, dt = 1.549819219815666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99713.0 min = 99713.0 factor = 1
 - strategy "round robin" : max = 94727.3 min = 94727.3 factor = 0.95
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     : 5.25 us    (1.2%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 414.46 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (68.9%)
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.010594955560103517 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2486102740616646e-10,-1.926330545483808e-10,3.5873927442447376e-10)
    sum a = (8.760787808372764e-12,-2.1848241295315835e-11,-6.135291152780742e-12)
    sum e = 1.2682565823873113e-10
    sum de = -7.794497689163682e-16
Info: cfl dt = 1.4824550276172979 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.6374e+05 | 99707 |      1 | 6.089e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9162.31792479823 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 82.28091324135677, dt = 1.4824550276172979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99707.0 min = 99707.0 factor = 1
 - strategy "round robin" : max = 94721.6 min = 94721.6 factor = 0.95
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     : 5.42 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 308.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.01059459778821614 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0924430899164844e-10,-2.304781801423398e-10,3.481987499946355e-10)
    sum a = (9.659952116168976e-12,-2.0750167528387132e-11,-6.941660476334255e-12)
    sum e = 1.2679115773790753e-10
    sum de = -8.402530524110398e-16
Info: cfl dt = 1.5707368963032247 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.5747e+05 | 99701 |      1 | 6.332e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8428.968290704905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 83.76336826897406, dt = 1.5707368963032247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99701.0 min = 99701.0 factor = 1
 - strategy "round robin" : max = 94715.9 min = 94715.9 factor = 0.95
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     : 5.02 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 341.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (71.9%)
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.010594217172554848 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0188140736729843e-10,-2.578364475048911e-10,3.4011547869533247e-10)
    sum a = (1.0277887506290797e-11,-1.9843289415861717e-11,-7.613817660939404e-12)
    sum e = 1.2678782742138212e-10
    sum de = -8.454551138211234e-16
Info: cfl dt = 1.5262314534285806 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.6486e+05 | 99700 |      1 | 6.048e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9350.11084206244 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 85.3341051652773, dt = 1.5262314534285806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99700.0 min = 99700.0 factor = 1
 - strategy "round robin" : max = 94715.0 min = 94715.0 factor = 0.95
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     : 5.53 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 354.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.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.010593845824219584 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.89862688022906e-10,-2.9494334220311683e-10,3.29055528580289e-10)
    sum a = (1.1076082973272784e-11,-1.8780830575981987e-11,-8.39709957827046e-12)
    sum e = 1.2674892474032295e-10
    sum de = -9.24856021697577e-16
Info: cfl dt = 1.4867171064210876 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.6579e+05 | 99693 |      1 | 6.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9137.276068294615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 86.86033661870587, dt = 1.4867171064210876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99693.0 min = 99693.0 factor = 1
 - strategy "round robin" : max = 94708.3 min = 94708.3 factor = 0.95
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     : 5.23 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 321.36 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (70.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.721728088084572e-10,-3.237190830552912e-10,3.1559605017052655e-10)
    sum a = (1.1683846339288774e-11,-1.7577565231960025e-11,-9.047659055948196e-12)
    sum e = 1.267255303134165e-10
    sum de = -9.697215731798782e-16
Info: cfl dt = 1.6396238583892226 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.3832e+05 | 99689 |      1 | 4.183e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12794.904983305643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 88.34705372512695, dt = 1.6396238583892226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99689.0 min = 99689.0 factor = 1
 - strategy "round robin" : max = 94704.5 min = 94704.5 factor = 0.95
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.60 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 308.05 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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 = (-1.8413808980034842e-10,-3.6464251520841067e-10,3.1129476226909996e-10)
    sum a = (1.2457083706257986e-11,-1.714627580849231e-11,-9.870258323942044e-12)
    sum e = 1.2670877520643186e-10
    sum de = -1.0121623489433183e-15
Info: cfl dt = 1.5639991107478406 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    | 2.3438e+05 | 99685 |      1 | 4.253e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13878.125495747074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 89.98667758351618, dt = 1.5639991107478406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99685.0 min = 99685.0 factor = 1
 - strategy "round robin" : max = 94700.8 min = 94700.8 factor = 0.95
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.84 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 326.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.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.010592695244077797 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4735847404422204e-10,-3.804983396851556e-10,2.8952471281865045e-10)
    sum a = (1.273176667503684e-11,-1.5362709078922116e-11,-1.0321517235384445e-11)
    sum e = 1.2669406550309607e-10
    sum de = -1.0144716912228458e-15
Info: cfl dt = 1.4997368113115959 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.6605e+05 | 99683 |      1 | 6.003e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9378.820900462777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 91.55067669426403, dt = 1.4997368113115959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99683.0 min = 99683.0 factor = 1
 - strategy "round robin" : max = 94698.8 min = 94698.8 factor = 0.95
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.27 us    (0.8%)
   patch tree reduce : 1.35 us    (0.2%)
   gen split merge   : 751.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 638.82 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (70.5%)
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.010592324359000394 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5542408497948234e-10,-4.046263955014427e-10,2.8359820006763735e-10)
    sum a = (1.3112540229216252e-11,-1.49080759492435e-11,-1.0829042745588119e-11)
    sum e = 1.2666441587391477e-10
    sum de = -1.0762586942676926e-15
Info: cfl dt = 1.6982273928155636 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.5516e+05 | 99678 |      1 | 6.424e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8404.208452792094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 93.05041350557562, dt = 1.6982273928155636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99678.0 min = 99678.0 factor = 1
 - strategy "round robin" : max = 94694.1 min = 94694.1 factor = 0.95
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     : 5.38 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 350.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.6%)
central potential accretion : +=  8e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6652387316143383e-10,-4.222058901085448e-10,2.7797372073824313e-10)
    sum a = (1.3277779686477777e-11,-1.4463995249828956e-11,-1.1209891781193971e-11)
    sum e = 1.2662875639480218e-10
    sum de = -1.1614154417950767e-15
Info: cfl dt = 1.6540185261596299 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    | 2.5090e+05 | 99670 |      1 | 3.972e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15390.093242510282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 94.74864089839119, dt = 1.6540185261596299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99670.0 min = 99670.0 factor = 1
 - strategy "round robin" : max = 94686.5 min = 94686.5 factor = 0.95
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.71 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 359.02 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (70.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 = (-1.7091387220171052e-10,-4.5382760045738164e-10,2.6839141146328195e-10)
    sum a = (1.376936513286468e-11,-1.3830218118162945e-11,-1.179053087178854e-11)
    sum e = 1.2660956709679815e-10
    sum de = -1.1900901919318712e-15
Info: cfl dt = 1.5861746973386872 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.5844e+05 | 99667 |      1 | 3.856e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15440.395645424329 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 96.40265942455082, dt = 1.5861746973386872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99667.0 min = 99667.0 factor = 1
 - strategy "round robin" : max = 94683.6 min = 94683.6 factor = 0.95
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.14 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 351.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.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.01059109284164189 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5171759971131955e-10,-4.854673692100616e-10,2.4924421269795203e-10)
    sum a = (1.424379667977662e-11,-1.2528557652826648e-11,-1.2366916300345925e-11)
    sum e = 1.265793145736254e-10
    sum de = -1.2147890595979126e-15
Info: cfl dt = 1.6081832279681625 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.5754e+05 | 99662 |      1 | 6.326e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9026.644818118168 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 97.98883412188951, dt = 1.0470544083150628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99662.0 min = 99662.0 factor = 1
 - strategy "round robin" : max = 94678.9 min = 94678.9 factor = 0.95
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.12 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 327.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.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.010590829711508879 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7690033465859247e-10,-5.090161668065975e-10,2.507894680057509e-10)
    sum a = (1.45733184325346e-11,-1.2783619474898778e-11,-1.273353848712255e-11)
    sum e = 1.2653642830600954e-10
    sum de = -1.255263972558372e-15
Info: cfl dt = 1.5773516300000345 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.6642e+05 | 99657 |      1 | 5.988e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6294.68639184623 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 74.07892060600001 (s)                                        [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
              - took 5.22 ms, bandwidth = 1.07 GB/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     : 5.63 us    (55.7%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
              - took 4.66 ms, bandwidth = 2.74 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 731.90 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 729.73 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 289.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 288.63 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 447.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 447.99 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.02613002 s
Info: compute_column_integ took 749.75 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 734.03 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
Info: evolve_until (target_time = 123.79s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 99.03588853020457, dt = 1.5773516300000345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99657.0 min = 99657.0 factor = 1
 - strategy "round robin" : max = 94674.1 min = 94674.1 factor = 0.95
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     : 6.68 us    (1.6%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 401.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.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.010590431978623971 unconverged cnt = 5
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9974292332724748e-10,-5.337966850621286e-10,2.482015187873529e-10)
    sum a = (1.482140825718999e-11,-1.2769883116046718e-11,-1.3098272374773437e-11)
    sum e = 1.265240905396867e-10
    sum de = -1.3118522126207728e-15
Info: cfl dt = 1.612631565684645 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.6373e+05 | 99652 |      1 | 6.086e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9330.069752750456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 100.61324016020461, dt = 1.612631565684645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99652.0 min = 99652.0 factor = 1
 - strategy "round robin" : max = 94669.4 min = 94669.4 factor = 0.95
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     : 5.89 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 405.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.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.6682446727191567e-10,-5.491620797838398e-10,2.2387096929602277e-10)
    sum a = (1.4913642304100133e-11,-1.1115965051521571e-11,-1.3365484656197876e-11)
    sum e = 1.2651806725454573e-10
    sum de = -1.2991085238609379e-15
Info: cfl dt = 1.570420897955503 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    | 2.5898e+05 | 99651 |      1 | 3.848e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15087.669703535317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 102.22587172588926, dt = 1.570420897955503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99651.0 min = 99651.0 factor = 1
 - strategy "round robin" : max = 94668.4 min = 94668.4 factor = 0.95
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     : 5.84 us    (1.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.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.010589624469125756 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6237974214409112e-10,-5.801677119907292e-10,2.0873401146911417e-10)
    sum a = (1.5293033763233395e-11,-1.0288580348331322e-11,-1.3802097445203836e-11)
    sum e = 1.2648864775116837e-10
    sum de = -1.3233194209637767e-15
Info: cfl dt = 1.521858003474701 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.5731e+05 | 99646 |      1 | 6.335e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8924.866896217924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 103.79629262384476, dt = 1.521858003474701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99646.0 min = 99646.0 factor = 1
 - strategy "round robin" : max = 94663.7 min = 94663.7 factor = 0.95
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     : 5.82 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 383.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
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.010589236069490523 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.465359768942561e-10,-6.039541186589642e-10,1.8897671369468462e-10)
    sum a = (1.5537806683845317e-11,-9.17568804434267e-12,-1.4137324097834731e-11)
    sum e = 1.2646952178870925e-10
    sum de = -1.3354708589328645e-15
Info: cfl dt = 1.5034828390958863 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.5736e+05 | 99643 |      1 | 6.332e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8652.009989122473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 105.31815062731947, dt = 1.5034828390958863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99643.0 min = 99643.0 factor = 1
 - strategy "round robin" : max = 94660.8 min = 94660.8 factor = 0.95
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     : 5.77 us    (1.4%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 379.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (74.2%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5725978662857204e-10,-6.342801106562317e-10,1.789111644596209e-10)
    sum a = (1.5884393429172706e-11,-8.864409284811473e-12,-1.4496702058936374e-11)
    sum e = 1.2644571805317865e-10
    sum de = -1.3643046683472905e-15
Info: cfl dt = 1.4546192249998038 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.5852e+05 | 99639 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14043.099697237814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 106.82163346641535, dt = 1.4546192249998038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99639.0 min = 99639.0 factor = 1
 - strategy "round robin" : max = 94657.0 min = 94657.0 factor = 0.95
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     : 5.70 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 372.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (69.7%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.37682745987975e-10,-6.356122007939906e-10,1.6185528937968822e-10)
    sum a = (1.5645177516699817e-11,-7.798679618941764e-12,-1.4408164166727012e-11)
    sum e = 1.264319357846698e-10
    sum de = -1.3403408911274351e-15
Info: cfl dt = 1.4909858793899469 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    | 2.4392e+05 | 99637 |      1 | 4.085e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12819.632563117919 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 108.27625269141515, dt = 1.4909858793899469 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99637.0 min = 99637.0 factor = 1
 - strategy "round robin" : max = 94655.1 min = 94655.1 factor = 0.95
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     : 11.12 us   (3.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 303.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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.01058809195454044 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2884733854983572e-10,-6.585449480469902e-10,1.445626917372807e-10)
    sum a = (1.582223756937658e-11,-6.977094636745545e-12,-1.463667096736624e-11)
    sum e = 1.264102301053862e-10
    sum de = -1.339211120997438e-15
Info: cfl dt = 1.447689238668952 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.6037e+05 | 99633 |      1 | 6.213e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8639.658588227927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 109.7672385708051, dt = 1.447689238668952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99633.0 min = 99633.0 factor = 1
 - strategy "round robin" : max = 94651.3 min = 94651.3 factor = 0.95
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     : 5.70 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 330.21 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.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.010587716882286847 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1400393636464952e-10,-6.883361278742373e-10,1.2277144362934397e-10)
    sum a = (1.6129763501542103e-11,-5.9629272838783964e-12,-1.499496874304866e-11)
    sum e = 1.263861886464483e-10
    sum de = -1.3409912078517394e-15
Info: cfl dt = 1.5298560345340342 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.5568e+05 | 99629 |      1 | 6.400e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8143.838921978407 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 111.21492780947406, dt = 1.5298560345340342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99629.0 min = 99629.0 factor = 1
 - strategy "round robin" : max = 94647.5 min = 94647.5 factor = 0.95
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     : 5.60 us    (1.7%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 314.88 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.7%)
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.010587319028440045 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2525802396739017e-10,-7.232855557625333e-10,1.1088095881827035e-10)
    sum a = (1.6504852548637316e-11,-5.722522654470503e-12,-1.5341420717486567e-11)
    sum e = 1.2635029616857062e-10
    sum de = -1.3733847613262166e-15
Info: cfl dt = 1.506212664515963 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.4462e+05 | 99622 |      1 | 6.889e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7994.909028734833 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 112.7447838440081, dt = 1.506212664515963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99622.0 min = 99622.0 factor = 1
 - strategy "round robin" : max = 94640.9 min = 94640.9 factor = 0.95
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     : 6.03 us    (1.7%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 332.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.0%)
central potential accretion : +=  4e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2849933524576359e-10,-7.471731897386569e-10,9.824290562247353e-11)
    sum a = (1.666045154704352e-11,-5.322372388573069e-12,-1.5498676564822894e-11)
    sum e = 1.263268136746563e-10
    sum de = -1.36058989877943e-15
Info: cfl dt = 1.4758600292146675 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.6051e+05 | 99618 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14179.805240450536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 114.25099650852405, dt = 1.4758600292146675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99618.0 min = 99618.0 factor = 1
 - strategy "round robin" : max = 94637.1 min = 94637.1 factor = 0.95
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     : 5.96 us    (1.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 308.14 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.2%)
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.0105865390873344 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1566529275220109e-10,-7.510979593221716e-10,8.141021232482221e-11)
    sum a = (1.642161765414999e-11,-4.552811034869735e-12,-1.532941600493867e-11)
    sum e = 1.2630821514922634e-10
    sum de = -1.3491995196027882e-15
Info: cfl dt = 1.4586783034649138 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.5439e+05 | 99615 |      1 | 6.452e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8234.406644423865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 115.72685653773873, dt = 1.4586783034649138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99615.0 min = 99615.0 factor = 1
 - strategy "round robin" : max = 94634.2 min = 94634.2 factor = 0.95
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     : 4.95 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 347.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.9%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0047533203351805e-10,-7.606569204367316e-10,6.276734026790742e-11)
    sum a = (1.6306452443633135e-11,-3.720661269157544e-12,-1.5250027252445573e-11)
    sum e = 1.2630061275011202e-10
    sum de = -1.307139072140072e-15
Info: cfl dt = 1.4297304863275282 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.5430e+05 | 99614 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13405.696762152042 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 117.18553484120363, dt = 1.4297304863275282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99614.0 min = 99614.0 factor = 1
 - strategy "round robin" : max = 94633.3 min = 94633.3 factor = 0.95
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     : 6.09 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 363.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (69.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.01058577804800599 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.846290146223475e-11,-7.873179547386442e-10,4.620731746939559e-11)
    sum a = (1.6538699519367562e-11,-3.2404800639328194e-12,-1.5418229425126247e-11)
    sum e = 1.262715922616913e-10
    sum de = -1.315068839951147e-15
Info: cfl dt = 1.3933573025401729 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.5768e+05 | 99609 |      1 | 6.317e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8147.4848498404435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 118.61526532753116, dt = 1.3933573025401729 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99609.0 min = 99609.0 factor = 1
 - strategy "round robin" : max = 94628.5 min = 94628.5 factor = 0.95
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     : 5.48 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 373.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.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.010585408949541089 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0970560672376336e-10,-8.0565423699066e-10,3.909660551598639e-11)
    sum a = (1.6596794280649225e-11,-3.256160227437498e-12,-1.5407476686556456e-11)
    sum e = 1.262433124503809e-10
    sum de = -1.3081591883552734e-15
Info: cfl dt = 1.4254533798410793 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.6717e+05 | 99604 |      1 | 5.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8418.901871101518 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 120.00862263007133, dt = 1.4254533798410793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99604.0 min = 99604.0 factor = 1
 - strategy "round robin" : max = 94623.8 min = 94623.8 factor = 0.95
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     : 5.93 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 316.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.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 = (-6.76993776523808e-11,-8.075918565993631e-10,6.6597140272032796e-12)
    sum a = (1.6312219005413947e-11,-1.6856699253339727e-12,-1.5241809639029753e-11)
    sum e = 1.2622741234391132e-10
    sum de = -1.2769189280901842e-15
Info: cfl dt = 1.3910696064208092 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    | 2.6021e+05 | 99601 |      1 | 3.828e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13406.309729698884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 121.4340760099124, dt = 1.3910696064208092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99601.0 min = 99601.0 factor = 1
 - strategy "round robin" : max = 94620.9 min = 94620.9 factor = 0.95
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.08 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 367.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.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.010584658907292295 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.3980435795544505e-11,-8.0900685579535e-10,-8.958688556356913e-12)
    sum a = (1.6047642088871107e-11,-1.057611921615206e-12,-1.4963749671306845e-11)
    sum e = 1.2620928208526822e-10
    sum de = -1.2510550324761107e-15
Info: cfl dt = 1.3509556455881204 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.6681e+05 | 99598 |      1 | 5.971e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8387.464463741446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 122.82514561633322, dt = 0.9697150464225075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99598.0 min = 99598.0 factor = 1
 - strategy "round robin" : max = 94618.1 min = 94618.1 factor = 0.95
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     : 5.96 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.3%)
   LB compute        : 405.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.859804778272276e-11,-8.093953724221317e-10,-2.3298505953254376e-11)
    sum a = (1.585645780837458e-11,-4.500472870601782e-13,-1.47725872212192e-11)
    sum e = 1.2619719545874706e-10
    sum de = -1.2021737306687049e-15
Info: cfl dt = 1.3270654575553775 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.6407e+05 | 99598 |      1 | 3.772e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9255.675368724806 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 85                                                      [SPH][rank=0]
Info: time since start : 87.735835987 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
              - took 5.51 ms, bandwidth = 1.01 GB/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.33 us    (57.8%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
              - took 4.57 ms, bandwidth = 2.79 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 729.56 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 731.70 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 288.57 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 288.42 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 443.14 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 441.28 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.023068043 s
Info: compute_column_integ took 746.50 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 729.77 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
Info: evolve_until (target_time = 148.55s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 123.79486066275572, dt = 1.3270654575553775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99598.0 min = 99598.0 factor = 1
 - strategy "round robin" : max = 94618.1 min = 94618.1 factor = 0.95
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.14 us    (1.6%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 355.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.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.439394809028743e-11,-8.156873749494169e-10,-3.442261495976073e-11)
    sum a = (1.570275686629724e-11,-1.643180426157861e-13,-1.454325696463786e-11)
    sum e = 1.2619438808011193e-10
    sum de = -1.165300904020404e-15
Info: cfl dt = 1.2969472015049268 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.3295e+05 | 99596 |      1 | 4.275e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11174.149816367966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 125.1219261203111, dt = 1.2969472015049268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99596.0 min = 99596.0 factor = 1
 - strategy "round robin" : max = 94616.2 min = 94616.2 factor = 0.95
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.60 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 324.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.3%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.646853616553315e-12,-8.195746093918835e-10,-5.929289890217068e-11)
    sum a = (1.5501491444344454e-11,8.546816404778663e-13,-1.4355709609521024e-11)
    sum e = 1.2618190773225987e-10
    sum de = -1.1203820878248568e-15
Info: cfl dt = 1.4152710195824778 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.5999e+05 | 99594 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12188.344766252441 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 126.41887332181602, dt = 1.4152710195824778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99594.0 min = 99594.0 factor = 1
 - strategy "round robin" : max = 94614.3 min = 94614.3 factor = 0.95
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     : 5.28 us    (1.2%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 405.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.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.010583311850004346 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6676463701463345e-11,-8.161007483904731e-10,-7.953719771867915e-11)
    sum a = (1.51441875561296e-11,1.658194040893837e-12,-1.3967181310347785e-11)
    sum e = 1.2616351372029193e-10
    sum de = -1.0902972007751196e-15
Info: cfl dt = 1.4248251419502302 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6698e+05 | 99590 |      1 | 5.964e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8542.49141447332 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 127.8341443413985, dt = 1.4248251419502302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99590.0 min = 99590.0 factor = 1
 - strategy "round robin" : max = 94610.5 min = 94610.5 factor = 0.95
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.82 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 383.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.9%)
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.010582925574878763 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.546092950218794e-11,-8.280816959897871e-10,-9.716865526995634e-11)
    sum a = (1.509728915060555e-11,2.0774888152682245e-12,-1.3814371475192904e-11)
    sum e = 1.261471504176056e-10
    sum de = -1.0461399491497757e-15
Info: cfl dt = 1.371365917409319 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6717e+05 | 99587 |      1 | 5.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8610.289072957507 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 129.25896948334872, dt = 1.371365917409319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99587.0 min = 99587.0 factor = 1
 - strategy "round robin" : max = 94607.6 min = 94607.6 factor = 0.95
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     : 5.82 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 342.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.9%)
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.01058255248768361 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2237027868415953e-11,-8.370433697182713e-10,-1.1134996153521043e-10)
    sum a = (1.501395945012718e-11,2.3662377588269216e-12,-1.3591130293109774e-11)
    sum e = 1.2613368000067784e-10
    sum de = -9.917695526735514e-16
Info: cfl dt = 1.3806104673634396 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6777e+05 | 99585 |      1 | 5.936e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8317.25517577215 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 130.63033540075804, dt = 1.3806104673634396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99585.0 min = 99585.0 factor = 1
 - strategy "round robin" : max = 94605.8 min = 94605.8 factor = 0.95
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     : 5.44 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 352.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.4%)
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.01058217558813887 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.501711460183029e-11,-8.392109218774194e-10,-1.267744195421946e-10)
    sum a = (1.4799132162280108e-11,2.7788307665549042e-12,-1.324720345644777e-11)
    sum e = 1.2611690255066443e-10
    sum de = -9.365808349026768e-16
Info: cfl dt = 1.4059261914856849 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5784e+05 | 99582 |      1 | 6.309e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7877.7152986695355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 132.0109458681215, dt = 1.4059261914856849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99582.0 min = 99582.0 factor = 1
 - strategy "round robin" : max = 94602.9 min = 94602.9 factor = 0.95
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     : 5.49 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 353.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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 = (7.096187950116698e-11,-8.275010207303074e-10,-1.4629867376816627e-10)
    sum a = (1.4312012743508901e-11,3.5158091210544422e-12,-1.2686190181277776e-11)
    sum e = 1.2610079575344034e-10
    sum de = -8.812996902372088e-16
Info: cfl dt = 1.3695910693532403 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3675e+05 | 99579 |      1 | 4.206e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12033.131376110963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 133.4168720596072, dt = 1.3695910693532403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99579.0 min = 99579.0 factor = 1
 - strategy "round robin" : max = 94600.0 min = 94600.0 factor = 0.95
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     : 5.36 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 351.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (68.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.032210060954973e-11,-8.222694469512018e-10,-1.6336117853602274e-10)
    sum a = (1.3968074152858621e-11,4.043507503280562e-12,-1.2232148393913932e-11)
    sum e = 1.260985541631008e-10
    sum de = -7.966154152735462e-16
Info: cfl dt = 1.3717295065773145 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6284e+05 | 99579 |      1 | 3.789e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13013.965455879987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 134.78646312896043, dt = 1.3717295065773145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99579.0 min = 99579.0 factor = 1
 - strategy "round robin" : max = 94600.0 min = 94600.0 factor = 0.95
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     : 5.56 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 317.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.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.010581035541716395 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.830393876660001e-11,-8.37577256703432e-10,-1.8009494353785645e-10)
    sum a = (1.4040203513990647e-11,4.309654552618534e-12,-1.2126288221520067e-11)
    sum e = 1.2607768953689587e-10
    sum de = -7.482606267276468e-16
Info: cfl dt = 1.3937226456492702 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6259e+05 | 99575 |      1 | 6.124e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8063.512051548628 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 136.15819263553774, dt = 1.3937226456492702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99575.0 min = 99575.0 factor = 1
 - strategy "round robin" : max = 94596.2 min = 94596.2 factor = 0.95
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     : 5.31 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 312.61 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (67.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.176290690852412e-10,-8.312328999093548e-10,-1.9668021891115394e-10)
    sum a = (1.3690555671136416e-11,4.773037175226078e-12,-1.163776603947233e-11)
    sum e = 1.260773761321409e-10
    sum de = -6.586765927695708e-16
Info: cfl dt = 1.32808851812707 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.6423e+05 | 99575 |      1 | 3.768e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13314.151285426124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 137.551915281187, dt = 1.32808851812707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99575.0 min = 99575.0 factor = 1
 - strategy "round robin" : max = 94596.2 min = 94596.2 factor = 0.95
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     : 5.31 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 351.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.9%)
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.010580280878548258 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3647901253290155e-10,-8.266124993363486e-10,-2.134600336768696e-10)
    sum a = (1.339937671272354e-11,5.223941944494441e-12,-1.1197110179296832e-11)
    sum e = 1.2606430828717408e-10
    sum de = -5.945110282792477e-16
Info: cfl dt = 1.3767360660219248 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6790e+05 | 99573 |      1 | 5.930e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8061.989806210817 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 138.88000379931407, dt = 1.3767360660219248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99573.0 min = 99573.0 factor = 1
 - strategy "round robin" : max = 94594.3 min = 94594.3 factor = 0.95
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.39 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 377.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.5%)
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.010579897195431611 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4245756708190224e-10,-8.349602989314045e-10,-2.2542223526940072e-10)
    sum a = (1.3364015543251281e-11,5.2905379676396385e-12,-1.09321516214136e-11)
    sum e = 1.2604383123941518e-10
    sum de = -5.271243363086955e-16
Info: cfl dt = 1.2725385196128949 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6758e+05 | 99569 |      1 | 5.942e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8341.439087887953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 140.256739865336, dt = 1.2725385196128949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99569.0 min = 99569.0 factor = 1
 - strategy "round robin" : max = 94590.5 min = 94590.5 factor = 0.95
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     : 5.73 us    (1.7%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 313.90 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.4%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6429413822752578e-10,-8.324784566279442e-10,-2.460681770852841e-10)
    sum a = (1.314424310914828e-11,5.846586111295322e-12,-1.056719196352448e-11)
    sum e = 1.2603539799439343e-10
    sum de = -4.476440957505509e-16
Info: cfl dt = 1.1169066299886938 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5932e+05 | 99568 |      1 | 3.840e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11931.54326466688 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 141.5292783849489, dt = 1.1169066299886938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99568.0 min = 99568.0 factor = 1
 - strategy "round robin" : max = 94589.6 min = 94589.6 factor = 0.95
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     : 5.14 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 373.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (70.9%)
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.010579228133224223 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7296713896312926e-10,-8.419679609875196e-10,-2.602909585289787e-10)
    sum a = (1.3186353115832602e-11,6.0407996394123665e-12,-1.0427853551089486e-11)
    sum e = 1.2601581793782398e-10
    sum de = -3.918483652100493e-16
Info: cfl dt = 1.143652801398539 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6850e+05 | 99565 |      1 | 5.909e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6804.604893730368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 142.6461850149376, dt = 1.143652801398539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99565.0 min = 99565.0 factor = 1
 - strategy "round robin" : max = 94586.8 min = 94586.8 factor = 0.95
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.94 us    (1.5%)
   patch tree reduce : 24.18 us   (6.1%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 356.35 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.8025596667166961e-10,-8.385593890451873e-10,-2.6687445854219306e-10)
    sum a = (1.2981422113335338e-11,6.027491368974383e-12,-1.0031000598762059e-11)
    sum e = 1.2601117275419466e-10
    sum de = -3.248729743088753e-16
Info: cfl dt = 1.1795271220136359 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6238e+05 | 99564 |      1 | 3.795e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10849.95820634803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 143.78983781633613, dt = 1.1795271220136359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99564.0 min = 99564.0 factor = 1
 - strategy "round robin" : max = 94585.8 min = 94585.8 factor = 0.95
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.35 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 369.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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 = (1.8799688706875904e-10,-8.345516329933716e-10,-2.7276361740188426e-10)
    sum a = (1.27688934279349e-11,5.989800978374562e-12,-9.62008345592173e-12)
    sum e = 1.2600683068541572e-10
    sum de = -2.529353256119657e-16
Info: cfl dt = 1.2193122983630638 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6221e+05 | 99563 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11183.050669100228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 144.96936493834977, dt = 1.2193122983630638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99563.0 min = 99563.0 factor = 1
 - strategy "round robin" : max = 94584.8 min = 94584.8 factor = 0.95
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.90 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 337.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.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.01057822881663953 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0977282362563681e-10,-8.199403705627753e-10,-2.872734391442658e-10)
    sum a = (1.2345165239012895e-11,6.381965219536342e-12,-9.050379646047986e-12)
    sum e = 1.259766714490468e-10
    sum de = -2.0210704652020397e-16
Info: cfl dt = 1.2588661611448808 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5938e+05 | 99557 |      1 | 6.246e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7027.3538095992935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 146.18867723671283, dt = 1.2588661611448808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99557.0 min = 99557.0 factor = 1
 - strategy "round robin" : max = 94579.1 min = 94579.1 factor = 0.95
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     : 4.94 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 342.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.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.010577871559052305 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2540048627405773e-10,-8.126738016689916e-10,-2.9911022819811034e-10)
    sum a = (1.2078852330417572e-11,6.571716129282858e-12,-8.596548530691775e-12)
    sum e = 1.2596729397645188e-10
    sum de = -1.3382298823421309e-16
Info: cfl dt = 1.2278096399371068 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6819e+05 | 99555 |      1 | 5.919e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7656.14166461572 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 147.44754339785771, dt = 1.1062893974491317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99555.0 min = 99555.0 factor = 1
 - strategy "round robin" : max = 94577.2 min = 94577.2 factor = 0.95
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     : 5.60 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 371.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (70.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.01057755667160517 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.575306159736053e-10,-7.950865611214958e-10,-3.2345307137004925e-10)
    sum a = (1.1639359566382882e-11,7.373839562289714e-12,-8.045872890009451e-12)
    sum e = 1.259435267485589e-10
    sum de = -9.550261603190228e-17
Info: cfl dt = 1.2054973911103977 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6804e+05 | 99551 |      1 | 5.924e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6722.8078938420895 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 104                                                     [SPH][rank=0]
Info: time since start : 102.10443497700001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
              - took 5.52 ms, bandwidth = 1.01 GB/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     : 6.04 us    (55.8%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
              - took 5.39 ms, bandwidth = 2.36 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 753.08 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 729.66 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 287.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 288.55 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 443.79 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 439.72 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.027311302000000003 s
Info: compute_column_integ took 746.17 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 728.71 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
Info: evolve_until (target_time = 173.31s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 148.55383279530685, dt = 1.2054973911103977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99551.0 min = 99551.0 factor = 1
 - strategy "round robin" : max = 94573.4 min = 94573.4 factor = 0.95
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     : 6.47 us    (1.2%)
   patch tree reduce : 1.76 us    (0.3%)
   gen split merge   : 1.15 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 502.59 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (69.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.010577212552815489 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.668397221838556e-10,-7.965931685253446e-10,-3.3348734442886427e-10)
    sum a = (1.1565799578976383e-11,7.393127726242949e-12,-7.750137582517813e-12)
    sum e = 1.2593036477027167e-10
    sum de = -3.365826735439616e-17
Info: cfl dt = 1.1791959944874282 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5702e+05 | 99548 |      1 | 6.340e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6845.489201042218 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 149.75933018641723, dt = 1.1791959944874282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99548.0 min = 99548.0 factor = 1
 - strategy "round robin" : max = 94570.6 min = 94570.6 factor = 0.95
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.56 us    (1.5%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 345.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (68.1%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8894581900448747e-10,-7.982121211194574e-10,-3.5641258517893995e-10)
    sum a = (1.1527481042627499e-11,7.915730886501415e-12,-7.513373347708554e-12)
    sum e = 1.2591962595897514e-10
    sum de = 4.507880254186655e-17
Info: cfl dt = 1.1592807162251586 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6157e+05 | 99546 |      1 | 3.806e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11154.657284949637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 150.93852618090466, dt = 1.1592807162251586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99546.0 min = 99546.0 factor = 1
 - strategy "round robin" : max = 94568.7 min = 94568.7 factor = 0.95
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     : 5.44 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 344.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.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.010576542051731433 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1493436486115223e-10,-7.75274873103743e-10,-3.712198980625717e-10)
    sum a = (1.1012583141190972e-11,8.348354852560075e-12,-6.858285100817455e-12)
    sum e = 1.259090004908602e-10
    sum de = 1.0934968038948203e-16
Info: cfl dt = 1.14427461498227 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.6720e+05 | 99544 |      1 | 5.953e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7010.023322655945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 152.09780689712983, dt = 1.14427461498227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99544.0 min = 99544.0 factor = 1
 - strategy "round robin" : max = 94566.8 min = 94566.8 factor = 0.95
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     : 5.21 us    (1.0%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.3%)
   LB compute        : 496.76 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2738344888319623e-10,-7.656960655924964e-10,-3.7880093009190595e-10)
    sum a = (1.076000535353909e-11,8.36871350381428e-12,-6.410069298905812e-12)
    sum e = 1.2590881167870105e-10
    sum de = 2.0111450609849917e-16
Info: cfl dt = 1.2171368012207155 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6217e+05 | 99544 |      1 | 3.797e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10849.254584530992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 153.2420815121121, dt = 1.2171368012207155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99544.0 min = 99544.0 factor = 1
 - strategy "round robin" : max = 94566.8 min = 94566.8 factor = 0.95
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     : 5.26 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 351.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.4%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3878792807955515e-10,-7.646616172356595e-10,-3.8926821586093604e-10)
    sum a = (1.068850587154358e-11,8.40440378967993e-12,-6.101873188827427e-12)
    sum e = 1.2590106134494663e-10
    sum de = 2.768113139388927e-16
Info: cfl dt = 1.1639102533089676 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6101e+05 | 99542 |      1 | 3.814e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11489.110995636593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 154.4592183133328, dt = 1.1639102533089676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99542.0 min = 99542.0 factor = 1
 - strategy "round robin" : max = 94564.9 min = 94564.9 factor = 0.95
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     : 5.17 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 331.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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 = (3.4580960969737146e-10,-7.635883787819103e-10,-3.9487133273104255e-10)
    sum a = (1.0614945585684075e-11,8.258498912777911e-12,-5.800958070748356e-12)
    sum e = 1.2589481971854276e-10
    sum de = 3.6483176396069324e-16
Info: cfl dt = 1.099157873177111 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4035e+05 | 99541 |      1 | 4.142e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10117.13525373821 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 155.62312856664175, dt = 1.099157873177111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99541.0 min = 99541.0 factor = 1
 - strategy "round robin" : max = 94563.9 min = 94563.9 factor = 0.95
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     : 5.19 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 306.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.010575204508958744 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6505874642800513e-10,-7.685728822282716e-10,-4.158119765092998e-10)
    sum a = (1.0704071396771574e-11,8.673156425097675e-12,-5.6751311981665765e-12)
    sum e = 1.2587310914613276e-10
    sum de = 4.325598984847787e-16
Info: cfl dt = 1.0492677398620358 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5363e+05 | 99537 |      1 | 6.479e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6107.372221588138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 156.72228643981887, dt = 1.0492677398620358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99537.0 min = 99537.0 factor = 1
 - strategy "round robin" : max = 94560.1 min = 94560.1 factor = 0.95
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     : 5.01 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 319.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.01057489887403774 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8539334208923664e-10,-7.603442387787522e-10,-4.338871421551361e-10)
    sum a = (1.0550480797676921e-11,9.081357605070799e-12,-5.3149447921372956e-12)
    sum e = 1.2585216657581312e-10
    sum de = 4.786241125539039e-16
Info: cfl dt = 1.0099273035160892 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6886e+05 | 99533 |      1 | 5.895e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6408.194029335045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 157.77155417968092, dt = 1.0099273035160892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99533.0 min = 99533.0 factor = 1
 - strategy "round robin" : max = 94556.3 min = 94556.3 factor = 0.95
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     : 5.87 us    (1.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 311.50 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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 = (4.02917872407581e-10,-7.475386883518881e-10,-4.450826350664462e-10)
    sum a = (1.0290366732809474e-11,9.291008962818081e-12,-4.897284883916433e-12)
    sum e = 1.2584686976948599e-10
    sum de = 5.402754750047273e-16
Info: cfl dt = 0.9843468770406012 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6459e+05 | 99532 |      1 | 3.762e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9664.976099175283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 158.781481483197, dt = 0.9843468770406012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99532.0 min = 99532.0 factor = 1
 - strategy "round robin" : max = 94555.4 min = 94555.4 factor = 0.95
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.15 us    (1.4%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 347.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.010574315766121811 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2487995468573836e-10,-7.370123867580186e-10,-4.6293343855695886e-10)
    sum a = (1.010400624536174e-11,9.732185943639658e-12,-4.539000261273893e-12)
    sum e = 1.258369095209052e-10
    sum de = 5.904909550475998e-16
Info: cfl dt = 0.9528946391496592 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6049e+05 | 99530 |      1 | 6.202e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5713.980826659244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 159.7658283602376, dt = 0.9528946391496592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99530.0 min = 99530.0 factor = 1
 - strategy "round robin" : max = 94553.5 min = 94553.5 factor = 0.95
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.51 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 357.98 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.2%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.337642731998591e-10,-7.329045438903655e-10,-4.689185729599606e-10)
    sum a = (1.003051804304515e-11,9.692822176593453e-12,-4.271198871391841e-12)
    sum e = 1.2582703498942932e-10
    sum de = 6.396878304649305e-16
Info: cfl dt = 0.9277461426665691 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6280e+05 | 99528 |      1 | 3.787e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9057.794683907114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 160.71872299938727, dt = 0.9277461426665691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99528.0 min = 99528.0 factor = 1
 - strategy "round robin" : max = 94551.6 min = 94551.6 factor = 0.95
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.37 us    (1.6%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 313.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (69.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.493559847534054e-10,-7.175617488768116e-10,-4.770518708294468e-10)
    sum a = (9.746542345589744e-12,9.824259111167935e-12,-3.838428101704387e-12)
    sum e = 1.2582213635015111e-10
    sum de = 6.969650729863024e-16
Info: cfl dt = 0.9293410434916356 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6262e+05 | 99527 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8812.797452049072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 161.64646914205383, dt = 0.9293410434916356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99527.0 min = 99527.0 factor = 1
 - strategy "round robin" : max = 94550.6 min = 94550.6 factor = 0.95
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.63 us    (1.4%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 374.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (72.6%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.571318840240407e-10,-7.053705377783813e-10,-4.764280890727686e-10)
    sum a = (9.513471204877412e-12,9.640784846239e-12,-3.4620607188323845e-12)
    sum e = 1.2581276416507327e-10
    sum de = 7.494180501976322e-16
Info: cfl dt = 0.9032709151633643 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6157e+05 | 99525 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8792.801698073896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 162.57581018554546, dt = 0.9032709151633643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99525.0 min = 99525.0 factor = 1
 - strategy "round robin" : max = 94548.8 min = 94548.8 factor = 0.95
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.90 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.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.010573222301636551 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.72724837960356e-10,-6.905338220874057e-10,-4.834881847159153e-10)
    sum a = (9.241266099931737e-12,9.770732752733084e-12,-3.0702002629187684e-12)
    sum e = 1.2579776411806736e-10
    sum de = 7.79906458472999e-16
Info: cfl dt = 0.9189352101515925 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6703e+05 | 99522 |      1 | 5.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5457.388289457562 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 163.47908110070884, dt = 0.9189352101515925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99522.0 min = 99522.0 factor = 1
 - strategy "round robin" : max = 94545.9 min = 94545.9 factor = 0.95
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.15 us    (1.9%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.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.010572950135506822 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.994049842200548e-10,-6.674461498311195e-10,-5.018808239539416e-10)
    sum a = (8.857938847697121e-12,1.0318847366493466e-11,-2.5288744695995345e-12)
    sum e = 1.2578368193787046e-10
    sum de = 8.119957930757719e-16
Info: cfl dt = 0.9025932304524079 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5268e+05 | 99519 |      1 | 6.518e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5075.413251474623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 164.39801631086044, dt = 0.9025932304524079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99519.0 min = 99519.0 factor = 1
 - strategy "round robin" : max = 94543.0 min = 94543.0 factor = 0.95
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.97 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 342.74 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.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.115727578142294e-10,-6.471463231384092e-10,-5.035552963267809e-10)
    sum a = (8.503383972114317e-12,1.0283744033760915e-11,-2.018440746739724e-12)
    sum e = 1.2576369546250096e-10
    sum de = 8.599587586706492e-16
Info: cfl dt = 0.8894536954055978 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6151e+05 | 99515 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8538.765042986346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 165.30060954131284, dt = 0.8894536954055978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99515.0 min = 99515.0 factor = 1
 - strategy "round robin" : max = 94539.2 min = 94539.2 factor = 0.95
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.97 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 363.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (70.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.01057241758579952 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.409307916327727e-10,-6.159581357958077e-10,-5.229441039722246e-10)
    sum a = (7.99683246790584e-12,1.0918106921253463e-11,-1.3367869219007908e-12)
    sum e = 1.2574395070282387e-10
    sum de = 8.846179498415674e-16
Info: cfl dt = 0.8789821751310597 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5982e+05 | 99511 |      1 | 6.226e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5142.741643280555 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 166.19006323671843, dt = 0.8789821751310597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99511.0 min = 99511.0 factor = 1
 - strategy "round robin" : max = 94535.4 min = 94535.4 factor = 0.95
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     : 5.03 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 346.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.6%)
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.010572155508665224 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.541159873544342e-10,-6.001492980862859e-10,-5.286233609076936e-10)
    sum a = (7.741665111153825e-12,1.0968321179708953e-11,-9.295808835482669e-13)
    sum e = 1.2573956733674633e-10
    sum de = 9.380504409705417e-16
Info: cfl dt = 0.8707827587056189 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4181e+05 | 99510 |      1 | 7.017e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4509.318980757323 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 167.0690454118495, dt = 0.8707827587056189 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99510.0 min = 99510.0 factor = 1
 - strategy "round robin" : max = 94534.5 min = 94534.5 factor = 0.95
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.25 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 341.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.669678332518529e-10,-5.860164202420051e-10,-5.355849919472384e-10)
    sum a = (7.526566588633576e-12,1.103740776095305e-11,-5.484177257686732e-13)
    sum e = 1.257352794168244e-10
    sum de = 9.94989455046335e-16
Info: cfl dt = 0.864545397972532 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6621e+05 | 99509 |      1 | 3.738e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8386.336716748983 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 167.9398281705551, dt = 0.864545397972532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99509.0 min = 99509.0 factor = 1
 - strategy "round robin" : max = 94533.5 min = 94533.5 factor = 0.95
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.52 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 351.21 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.734115877277788e-10,-5.765495133286797e-10,-5.359259075942981e-10)
    sum a = (7.388978741871931e-12,1.08590336212105e-11,-2.5452466488076346e-13)
    sum e = 1.2573605805346405e-10
    sum de = 1.0673100804410282e-15
Info: cfl dt = 0.8600214752824663 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5364e+05 | 99509 |      1 | 3.923e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7933.0729734526785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 168.80437356852764, dt = 0.8600214752824663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99509.0 min = 99509.0 factor = 1
 - strategy "round robin" : max = 94533.5 min = 94533.5 factor = 0.95
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.33 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.3%)
   LB compute        : 306.50 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.7%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.920145867779819e-10,-5.605892343933091e-10,-5.492437451455544e-10)
    sum a = (7.1709679504418325e-12,1.117884115924909e-11,1.3991117409143512e-13)
    sum e = 1.2572689179031786e-10
    sum de = 1.105359138199497e-15
Info: cfl dt = 0.8570102786981809 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6610e+05 | 99507 |      1 | 3.740e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8279.33281201637 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 169.66439504381012, dt = 0.8570102786981809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99507.0 min = 99507.0 factor = 1
 - strategy "round robin" : max = 94531.6 min = 94531.6 factor = 0.95
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     : 5.29 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 351.37 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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 = (6.027683081654845e-10,-5.555664364284886e-10,-5.567845604575723e-10)
    sum a = (7.15689975381145e-12,1.1237117714044325e-11,3.422971190108167e-13)
    sum e = 1.2572268067736112e-10
    sum de = 1.1727047688929452e-15
Info: cfl dt = 0.9861855369796027 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6482e+05 | 99506 |      1 | 3.757e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8211.040268368482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 170.5214053225083, dt = 0.9861855369796027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99506.0 min = 99506.0 factor = 1
 - strategy "round robin" : max = 94530.7 min = 94530.7 factor = 0.95
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.25 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 321.54 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 23.40 us   (6.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.097697094490988e-10,-5.445672061948103e-10,-5.56324833056665e-10)
    sum a = (7.012542588313747e-12,1.1013991340631006e-11,6.599057544596335e-13)
    sum e = 1.2572643131024448e-10
    sum de = 1.2529699396908998e-15
Info: cfl dt = 0.9813103758141134 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6711e+05 | 99506 |      1 | 3.725e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9530.308229983293 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 171.5075908594879, dt = 0.9813103758141134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99506.0 min = 99506.0 factor = 1
 - strategy "round robin" : max = 94530.7 min = 94530.7 factor = 0.95
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.63 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 355.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.1%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.070358234217389e-10,-5.439961793547072e-10,-5.466613090911804e-10)
    sum a = (7.004466008575002e-12,1.0428098138026729e-11,7.597416863601578e-13)
    sum e = 1.257174612191051e-10
    sum de = 1.3199743429077814e-15
Info: cfl dt = 0.8558770300386628 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6524e+05 | 99504 |      1 | 3.751e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9416.843431238873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 172.488901235302, dt = 0.8239036925560015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99504.0 min = 99504.0 factor = 1
 - strategy "round robin" : max = 94528.8 min = 94528.8 factor = 0.95
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.70 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 360.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (65.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.010570277371899863 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.185954607932032e-10,-5.23450554447431e-10,-5.481946837304772e-10)
    sum a = (6.672704423223981e-12,1.0384346469577988e-11,1.193863385282993e-12)
    sum e = 1.2570042906506975e-10
    sum de = 1.3463729618599515e-15
Info: cfl dt = 0.9761669728516932 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6917e+05 | 99501 |      1 | 5.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5042.935305446744 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 129                                                     [SPH][rank=0]
Info: time since start : 118.71616825800001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
              - took 5.28 ms, bandwidth = 1.06 GB/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     : 5.70 us    (56.5%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
              - took 4.58 ms, bandwidth = 2.78 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 722.88 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 723.03 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 284.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 284.29 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 437.19 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 435.70 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.022530276000000002 s
Info: compute_column_integ took 737.15 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 724.43 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
Info: evolve_until (target_time = 198.07s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 173.312804927858, dt = 0.9761669728516932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99501.0 min = 99501.0 factor = 1
 - strategy "round robin" : max = 94525.9 min = 94525.9 factor = 0.95
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.65 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 384.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (71.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.304627219827736e-10,-5.161135347423114e-10,-5.550370180275871e-10)
    sum a = (6.6427531568888615e-12,1.0417414061602726e-11,1.422920799063499e-12)
    sum e = 1.256995937936286e-10
    sum de = 1.4175081579839103e-15
Info: cfl dt = 0.9747531803423243 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3066e+05 | 99500 |      1 | 4.314e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8146.553645087829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 174.2889719007097, dt = 0.9747531803423243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99500.0 min = 99500.0 factor = 1
 - strategy "round robin" : max = 94525.0 min = 94525.0 factor = 0.95
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     : 5.65 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 409.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.368794755202505e-10,-5.06075143352265e-10,-5.535152270130042e-10)
    sum a = (6.530787455913932e-12,1.0179143722259257e-11,1.6857894457979125e-12)
    sum e = 1.2570098777015752e-10
    sum de = 1.4953125068669815e-15
Info: cfl dt = 0.9744602833300336 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4956e+05 | 99500 |      1 | 3.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8801.509081121605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 175.26372508105203, dt = 0.9744602833300336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99500.0 min = 99500.0 factor = 1
 - strategy "round robin" : max = 94525.0 min = 94525.0 factor = 0.95
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     : 5.75 us    (1.3%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 1.05 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.2%)
   LB compute        : 427.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (0.9%)
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 = (6.374172558219165e-10,-4.988898533490767e-10,-5.440450481463073e-10)
    sum a = (6.429568588525148e-12,9.670165162482867e-12,1.8646721389827366e-12)
    sum e = 1.2569749474126972e-10
    sum de = 1.5579053127733702e-15
Info: cfl dt = 1.1179163268612338 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6359e+05 | 99499 |      1 | 3.775e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9293.504637253945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 176.23818536438208, dt = 1.1179163268612338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99499.0 min = 99499.0 factor = 1
 - strategy "round robin" : max = 94524.0 min = 94524.0 factor = 0.95
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     : 4.95 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 302.47 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.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.010569045593500272 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.499159537990849e-10,-4.806312309128628e-10,-5.457241389720116e-10)
    sum a = (6.203653936283862e-12,9.565875261943314e-12,2.259557169239954e-12)
    sum e = 1.2569744592312863e-10
    sum de = 1.6287764161525659e-15
Info: cfl dt = 1.1030878922344864 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7072e+05 | 99498 |      1 | 5.828e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6905.260395167387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 177.3561016912433, dt = 1.1030878922344864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99498.0 min = 99498.0 factor = 1
 - strategy "round robin" : max = 94523.1 min = 94523.1 factor = 0.95
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.16 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 308.03 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.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.010568707401893081 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.517879201998122e-10,-4.779118094510598e-10,-5.391027363850815e-10)
    sum a = (6.2209419180901304e-12,9.117577493855548e-12,2.3609403535990746e-12)
    sum e = 1.2569397514369312e-10
    sum de = 1.698068886177591e-15
Info: cfl dt = 1.1208962422746667 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6528e+05 | 99497 |      1 | 6.020e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6596.68350245238 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 178.4591895834778, dt = 1.1208962422746667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99497.0 min = 99497.0 factor = 1
 - strategy "round robin" : max = 94522.1 min = 94522.1 factor = 0.95
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     : 29.17 us   (7.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 356.66 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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 = (6.640151002238874e-10,-4.703467934853673e-10,-5.445743697640764e-10)
    sum a = (6.222783744454933e-12,9.11003825236537e-12,2.5539210164543546e-12)
    sum e = 1.2569121742662588e-10
    sum de = 1.7768132372106565e-15
Info: cfl dt = 1.2107968286825532 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6400e+05 | 99496 |      1 | 3.769e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10707.150887707918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 179.58008582575246, dt = 1.2107968286825532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99496.0 min = 99496.0 factor = 1
 - strategy "round robin" : max = 94521.2 min = 94521.2 factor = 0.95
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     : 5.77 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (67.5%)
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.774241991961003e-10,-4.4439614979402634e-10,-5.444967699920636e-10)
    sum a = (5.87202978008243e-12,8.96292117223473e-12,3.0766693362652892e-12)
    sum e = 1.256805050142405e-10
    sum de = 1.8315432665333002e-15
Info: cfl dt = 1.2754218300457947 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6662e+05 | 99493 |      1 | 3.732e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11680.857442421939 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 180.79088265443502, dt = 1.2754218300457947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99493.0 min = 99493.0 factor = 1
 - strategy "round robin" : max = 94518.3 min = 94518.3 factor = 0.95
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.02 us    (1.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 381.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (69.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.010567595067709268 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.847478918273541e-10,-4.3570962218752214e-10,-5.409487152426121e-10)
    sum a = (5.8370567924817675e-12,8.645522043200319e-12,3.257068700697562e-12)
    sum e = 1.2566451896918296e-10
    sum de = 1.864895327289307e-15
Info: cfl dt = 1.2779095363214876 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7064e+05 | 99489 |      1 | 5.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7875.26146124939 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 182.0663044844808, dt = 1.2779095363214876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99489.0 min = 99489.0 factor = 1
 - strategy "round robin" : max = 94514.5 min = 94514.5 factor = 0.95
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     : 6.11 us    (1.7%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 346.72 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.9%)
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.01056719861862852 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.934274617654876e-10,-4.1287707737526596e-10,-5.322852676268188e-10)
    sum a = (5.5397908417334815e-12,8.25940715776946e-12,3.663530368760624e-12)
    sum e = 1.2565172602361583e-10
    sum de = 1.9255299474798812e-15
Info: cfl dt = 1.2832676943341224 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5875e+05 | 99486 |      1 | 6.267e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7340.8517490407385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 183.3442140208023, dt = 1.2832676943341224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99486.0 min = 99486.0 factor = 1
 - strategy "round robin" : max = 94511.7 min = 94511.7 factor = 0.95
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     : 5.57 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 323.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.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 = (6.844770446903616e-10,-3.9896155578088645e-10,-5.037299875512705e-10)
    sum a = (5.252714538101191e-12,7.13964709276613e-12,3.8479497307623565e-12)
    sum e = 1.2563925880733845e-10
    sum de = 1.983406220194441e-15
Info: cfl dt = 1.2912786515599222 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3801e+05 | 99483 |      1 | 4.180e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11052.605332697985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 184.6274817151364, dt = 1.2912786515599222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99483.0 min = 99483.0 factor = 1
 - strategy "round robin" : max = 94508.8 min = 94508.8 factor = 0.95
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     : 5.64 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 335.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.5%)
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.010566396113942304 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.873597654098775e-10,-3.988345202406531e-10,-4.961084164305555e-10)
    sum a = (5.337236411774174e-12,6.697119248436821e-12,3.804787255069834e-12)
    sum e = 1.2563706092265072e-10
    sum de = 2.0621276633802306e-15
Info: cfl dt = 1.3335658800441441 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6369e+05 | 99482 |      1 | 6.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7648.996539435645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 185.91876036669635, dt = 1.3335658800441441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99482.0 min = 99482.0 factor = 1
 - strategy "round robin" : max = 94507.9 min = 94507.9 factor = 0.95
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.43 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 351.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.010565978429713388 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.136693324017189e-10,-3.599198134135197e-10,-5.06607709575845e-10)
    sum a = (4.892861892560498e-12,7.026508164990595e-12,4.50516168263167e-12)
    sum e = 1.2562059746723093e-10
    sum de = 2.09827336617116e-15
Info: cfl dt = 1.378552747138529 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5472e+05 | 99478 |      1 | 6.429e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7467.005271392905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 187.2523262467405, dt = 1.378552747138529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99478.0 min = 99478.0 factor = 1
 - strategy "round robin" : max = 94504.1 min = 94504.1 factor = 0.95
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.75 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 323.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.010565545213847172 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.204309718192635e-10,-3.3289007109109355e-10,-4.944495291254148e-10)
    sum a = (4.539666663652401e-12,6.5587421687985555e-12,4.987158194569293e-12)
    sum e = 1.2560950696647305e-10
    sum de = 2.169338435606434e-15
Info: cfl dt = 1.5366595708907131 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6369e+05 | 99475 |      1 | 6.077e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8166.548324370721 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 188.63087899387904, dt = 1.5366595708907131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99475.0 min = 99475.0 factor = 1
 - strategy "round robin" : max = 94501.2 min = 94501.2 factor = 0.95
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     : 5.38 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 355.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
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.010565060580432144 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.370997298007297e-10,-3.0748519453804867e-10,-4.951738165943773e-10)
    sum a = (4.339239596946978e-12,6.4780303876117104e-12,5.416987069164855e-12)
    sum e = 1.2560758237151298e-10
    sum de = 2.2482487412502578e-15
Info: cfl dt = 1.526437153236616 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6237e+05 | 99473 |      1 | 6.126e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9030.012010651406 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 190.16753856476976, dt = 1.526437153236616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99473.0 min = 99473.0 factor = 1
 - strategy "round robin" : max = 94499.3 min = 94499.3 factor = 0.95
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.43 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 329.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.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.01056457735829299 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.46799654109853e-10,-3.032752238836651e-10,-4.934024593948228e-10)
    sum a = (4.441890576625747e-12,6.274138935872302e-12,5.412048101286639e-12)
    sum e = 1.256005761583135e-10
    sum de = 2.32619126009004e-15
Info: cfl dt = 1.4355829044210529 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7226e+05 | 99471 |      1 | 5.775e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9516.21663075833 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 191.69397571800639, dt = 1.4355829044210529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99471.0 min = 99471.0 factor = 1
 - strategy "round robin" : max = 94497.4 min = 94497.4 factor = 0.95
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     : 5.20 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 366.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.010564121244577304 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.362016545352084e-10,-3.2703326034489797e-10,-4.713339109960736e-10)
    sum a = (4.807935040538517e-12,5.35495650499821e-12,4.752267065468651e-12)
    sum e = 1.2558105978562124e-10
    sum de = 2.3558816370888946e-15
Info: cfl dt = 1.363539317610988 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6753e+05 | 99467 |      1 | 5.937e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8704.301658905199 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 193.12955862242742, dt = 1.363539317610988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99467.0 min = 99467.0 factor = 1
 - strategy "round robin" : max = 94493.6 min = 94493.6 factor = 0.95
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     : 5.43 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 327.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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 = (7.372277628558102e-10,-3.2591865812902196e-10,-4.589769563668481e-10)
    sum a = (4.855753193563378e-12,4.860713497134923e-12,4.592869512687137e-12)
    sum e = 1.255771468694933e-10
    sum de = 2.4200702956116057e-15
Info: cfl dt = 1.3047548278529537 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6501e+05 | 99466 |      1 | 3.753e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13078.570459415534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 194.4930979400384, dt = 1.3047548278529537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99466.0 min = 99466.0 factor = 1
 - strategy "round robin" : max = 94492.7 min = 94492.7 factor = 0.95
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     : 5.11 us    (1.3%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 377.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.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.010563269201533044 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.424252460694212e-10,-3.113091941048949e-10,-4.489326411206097e-10)
    sum a = (4.712963814089449e-12,4.4960914587777794e-12,4.7184380697106064e-12)
    sum e = 1.2556851092336811e-10
    sum de = 2.4645217981613677e-15
Info: cfl dt = 1.511856685636964 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7373e+05 | 99464 |      1 | 5.725e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8204.240965154564 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 195.79785276789136, dt = 1.511856685636964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99464.0 min = 99464.0 factor = 1
 - strategy "round robin" : max = 94490.8 min = 94490.8 factor = 0.95
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.17 us    (1.2%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 400.24 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.1%)
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.010562783959638156 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.274479505565216e-10,-3.2855654806332936e-10,-4.174912695066314e-10)
    sum a = (4.890733930429136e-12,3.355571920141552e-12,4.065243842299329e-12)
    sum e = 1.2554804778879332e-10
    sum de = 2.4800356295727296e-15
Info: cfl dt = 1.5923636371463237 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5044e+05 | 99458 |      1 | 6.611e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8232.517636070254 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 197.3097094535283, dt = 0.7620676068808336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99458.0 min = 99458.0 factor = 1
 - strategy "round robin" : max = 94485.1 min = 94485.1 factor = 0.95
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     : 5.56 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 376.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.2%)
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.347752646470841e-10,-3.2332001912286803e-10,-4.185645623228048e-10)
    sum a = (4.881865327340075e-12,3.391769504993397e-12,4.05110951234901e-12)
    sum e = 1.2551655137342562e-10
    sum de = 2.500856052833934e-15
Info: cfl dt = 1.5624239830039897 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6161e+05 | 99455 |      1 | 3.802e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7216.475901353878 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 149                                                     [SPH][rank=0]
Info: time since start : 133.688379445 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
              - took 5.40 ms, bandwidth = 1.03 GB/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.63 us    (58.1%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
              - took 6.97 ms, bandwidth = 1.83 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 757.65 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 727.06 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 286.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 287.22 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 442.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 437.43 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.027940752000000003 s
Info: compute_column_integ took 746.88 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 728.00 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
Info: evolve_until (target_time = 222.83s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 198.07177706040915, dt = 1.5624239830039897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99455.0 min = 99455.0 factor = 1
 - strategy "round robin" : max = 94482.2 min = 94482.2 factor = 0.95
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     : 6.65 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 398.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.8%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.387749813667704e-10,-3.1206192980727356e-10,-4.0493353786962965e-10)
    sum a = (4.796155002182369e-12,2.9555006195357475e-12,4.042926223112384e-12)
    sum e = 1.2553509960612193e-10
    sum de = 2.564720986211911e-15
Info: cfl dt = 1.6230226666488594 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4970e+05 | 99454 |      1 | 3.983e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14122.300388593216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 199.63420104341313, dt = 1.6230226666488594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99454.0 min = 99454.0 factor = 1
 - strategy "round robin" : max = 94481.3 min = 94481.3 factor = 0.95
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.72 us    (1.4%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 382.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (68.1%)
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.010561508499166775 unconverged cnt = 4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.559389719707996e-10,-2.8663488648537476e-10,-4.049318029918969e-10)
    sum a = (4.5599153711697616e-12,3.0293590476251893e-12,4.312331811430741e-12)
    sum e = 1.2551057227389019e-10
    sum de = 2.5643308700242964e-15
Info: cfl dt = 1.6545996968199295 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7136e+05 | 99448 |      1 | 5.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10067.738939641653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 201.257223710062, dt = 1.6545996968199295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99448.0 min = 99448.0 factor = 1
 - strategy "round robin" : max = 94475.6 min = 94475.6 factor = 0.95
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     : 5.35 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 345.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (71.5%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.676409315643125e-10,-2.731246634491745e-10,-4.0094529629520196e-10)
    sum a = (4.515425388322233e-12,2.962536862526224e-12,4.328062204057999e-12)
    sum e = 1.2551088979468475e-10
    sum de = 2.616365008884952e-15
Info: cfl dt = 1.5662604716986361 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5302e+05 | 99447 |      1 | 3.930e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15154.983774435033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 202.91182340688192, dt = 1.5662604716986361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99447.0 min = 99447.0 factor = 1
 - strategy "round robin" : max = 94474.6 min = 94474.6 factor = 0.95
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     : 5.17 us    (1.3%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 376.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (72.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.010560458699629951 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.756036583458063e-10,-2.6930464887541655e-10,-3.956530957419904e-10)
    sum a = (4.564160563348341e-12,2.844115141494564e-12,4.135494818318266e-12)
    sum e = 1.2550184347285386e-10
    sum de = 2.6539135846570994e-15
Info: cfl dt = 1.4969261862611525 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6412e+05 | 99445 |      1 | 6.059e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9305.44445135379 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 204.47808387858055, dt = 1.4969261862611525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99445.0 min = 99445.0 factor = 1
 - strategy "round robin" : max = 94472.8 min = 94472.8 factor = 0.95
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     : 5.47 us    (1.5%)
   patch tree reduce : 1.16 us    (0.3%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 351.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.6%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.853008274410828e-10,-2.688305115602193e-10,-3.942210373595946e-10)
    sum a = (4.66266107262349e-12,2.8658667338985052e-12,3.89862274872023e-12)
    sum e = 1.2549343925489938e-10
    sum de = 2.684356768350422e-15
Info: cfl dt = 1.4680659794356563 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7049e+05 | 99443 |      1 | 3.676e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14658.38009693828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 205.9750100648417, dt = 1.4680659794356563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99443.0 min = 99443.0 factor = 1
 - strategy "round robin" : max = 94470.8 min = 94470.8 factor = 0.95
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     : 5.83 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 356.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.0%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.954892776499964e-10,-2.708518006874228e-10,-3.945370655550767e-10)
    sum a = (4.786702605861389e-12,2.9659951568950437e-12,3.604557796237472e-12)
    sum e = 1.2548632004180477e-10
    sum de = 2.711430590865229e-15
Info: cfl dt = 1.5997969494105972 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6760e+05 | 99441 |      1 | 3.716e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14222.428553978316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 207.44307604427738, dt = 1.5997969494105972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99441.0 min = 99441.0 factor = 1
 - strategy "round robin" : max = 94468.9 min = 94468.9 factor = 0.95
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     : 5.51 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 340.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.7%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.075096637320341e-10,-2.576651957510222e-10,-3.922605776774002e-10)
    sum a = (4.710909185707702e-12,3.04675712208773e-12,3.5734314764716933e-12)
    sum e = 1.2548983456518968e-10
    sum de = 2.73968890675954e-15
Info: cfl dt = 1.5308820164851735 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7049e+05 | 99440 |      1 | 3.676e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15666.265266168199 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 209.04287299368798, dt = 1.5308820164851735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99440.0 min = 99440.0 factor = 1
 - strategy "round robin" : max = 94468.0 min = 94468.0 factor = 0.95
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.48 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 344.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.147326936241671e-10,-2.530513289290979e-10,-3.8695998902293817e-10)
    sum a = (4.718001305273625e-12,3.016243949081421e-12,3.362675804370337e-12)
    sum e = 1.2549179199540816e-10
    sum de = 2.7779251859514702e-15
Info: cfl dt = 1.6004970806778558 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7204e+05 | 99440 |      1 | 3.655e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15077.257116577257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 210.57375501017316, dt = 1.6004970806778558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99440.0 min = 99440.0 factor = 1
 - strategy "round robin" : max = 94468.0 min = 94468.0 factor = 0.95
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.69 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 311.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.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.010557916700787904 unconverged cnt = 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.347430418861176e-10,-2.404139784647367e-10,-3.9568856151648273e-10)
    sum a = (4.681078961702949e-12,3.5204774293275485e-12,3.3652259995350747e-12)
    sum e = 1.2547806265539952e-10
    sum de = 2.7799480473845866e-15
Info: cfl dt = 1.5732117698225976 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6316e+05 | 99436 |      1 | 6.094e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9454.104291867756 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 212.174252090851, dt = 1.5732117698225976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99436.0 min = 99436.0 factor = 1
 - strategy "round robin" : max = 94464.2 min = 94464.2 factor = 0.95
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     : 5.59 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 391.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.5%)
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.366146567871422e-10,-2.3600456652391513e-10,-3.840867010211593e-10)
    sum a = (4.6167361455484045e-12,3.3040130425964313e-12,3.107305856729491e-12)
    sum e = 1.2546615585254527e-10
    sum de = 2.783292403161428e-15
Info: cfl dt = 1.806590873271556 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6993e+05 | 99433 |      1 | 3.684e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15374.866238606664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 213.7474638606736, dt = 1.806590873271556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99433.0 min = 99433.0 factor = 1
 - strategy "round robin" : max = 94461.3 min = 94461.3 factor = 0.95
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     : 5.28 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 332.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.437434916122216e-10,-2.397544112012996e-10,-3.807083430951523e-10)
    sum a = (4.699378290116143e-12,3.3905783325144053e-12,2.6338315664899117e-12)
    sum e = 1.2547450646833644e-10
    sum de = 2.798177428526415e-15
Info: cfl dt = 1.748847876947102 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4015e+05 | 99432 |      1 | 4.140e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15707.977698966291 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 215.55405473394515, dt = 1.748847876947102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99432.0 min = 99432.0 factor = 1
 - strategy "round robin" : max = 94460.4 min = 94460.4 factor = 0.95
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     : 6.12 us    (1.8%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 326.83 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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 = (8.503950942089599e-10,-2.436611445384156e-10,-3.7767061436946803e-10)
    sum a = (4.767383980172794e-12,3.49896187561857e-12,2.167345594165466e-12)
    sum e = 1.2547213359114464e-10
    sum de = 2.8072031177266237e-15
Info: cfl dt = 1.7174867715788298 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3803e+05 | 99431 |      1 | 4.177e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15071.741007912246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 217.30290261089226, dt = 1.7174867715788298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99431.0 min = 99431.0 factor = 1
 - strategy "round robin" : max = 94459.4 min = 94459.4 factor = 0.95
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     : 5.61 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 322.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (65.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.010555615186448711 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.501339570095452e-10,-2.3183739386551977e-10,-3.611268368711994e-10)
    sum a = (4.5632123314410725e-12,3.2067028007540297e-12,1.9985308861994823e-12)
    sum e = 1.2545016929825068e-10
    sum de = 2.774045177763686e-15
Info: cfl dt = 1.6857559396861037 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7514e+05 | 99426 |      1 | 5.677e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10891.587974074022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 219.02038938247108, dt = 1.6857559396861037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99426.0 min = 99426.0 factor = 1
 - strategy "round robin" : max = 94454.7 min = 94454.7 factor = 0.95
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     : 6.10 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 354.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (69.2%)
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.551400962186995e-10,-2.338445160645106e-10,-3.5740387303824504e-10)
    sum a = (4.566548079173212e-12,3.309541781342125e-12,1.570174158500324e-12)
    sum e = 1.2543834255753687e-10
    sum de = 2.7585241823271844e-15
Info: cfl dt = 1.7257705703760287 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4932e+05 | 99423 |      1 | 3.988e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15218.140679139271 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 220.7061453221572, dt = 1.7257705703760287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99423.0 min = 99423.0 factor = 1
 - strategy "round robin" : max = 94451.8 min = 94451.8 factor = 0.95
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.06 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 355.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.677591821492717e-10,-2.1933797099044303e-10,-3.571707143766374e-10)
    sum a = (4.432598581362352e-12,3.614590244263935e-12,1.539816037310665e-12)
    sum e = 1.2543940520950786e-10
    sum de = 2.7557832210182804e-15
Info: cfl dt = 1.7180437567549278 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6325e+05 | 99422 |      1 | 3.777e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16449.91559997728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 222.43191589253323, dt = 0.39883330042707144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99422.0 min = 99422.0 factor = 1
 - strategy "round robin" : max = 94450.9 min = 94450.9 factor = 0.95
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     : 5.20 us    (1.5%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 335.20 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.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.63739683472984e-10,-2.2490845481333744e-10,-3.5266947817420026e-10)
    sum a = (4.453190395208003e-12,3.501956027309974e-12,1.2827440994761327e-12)
    sum e = 1.2540569482653734e-10
    sum de = 2.755668537526624e-15
Info: cfl dt = 1.6637301603119787 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5805e+05 | 99421 |      1 | 3.853e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3726.594094586586 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 165                                                     [SPH][rank=0]
Info: time since start : 145.315626559 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
              - took 5.17 ms, bandwidth = 1.08 GB/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     : 5.79 us    (57.5%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
              - took 4.54 ms, bandwidth = 2.80 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 725.92 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 726.59 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 289.21 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 289.22 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 448.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 448.46 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.022277749000000003 s
Info: compute_column_integ took 740.57 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 725.62 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
Info: evolve_until (target_time = 247.59s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 222.8307491929603, dt = 1.6637301603119787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99421.0 min = 99421.0 factor = 1
 - strategy "round robin" : max = 94449.9 min = 94449.9 factor = 0.95
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.97 us    (1.9%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 355.76 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.711433592643422e-10,-2.1907144077815838e-10,-3.50546462725813e-10)
    sum a = (4.36714014152021e-12,3.737199553251223e-12,1.0474418893863189e-12)
    sum e = 1.2543778552926078e-10
    sum de = 2.740298374711781e-15
Info: cfl dt = 1.6866132268391427 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4617e+05 | 99421 |      1 | 4.039e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14830.050624801046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 224.49447935327228, dt = 1.6866132268391427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99421.0 min = 99421.0 factor = 1
 - strategy "round robin" : max = 94449.9 min = 94449.9 factor = 0.95
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     : 4.95 us    (1.3%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 367.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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 = (8.845328098474812e-10,-2.072376326878354e-10,-3.549902418749339e-10)
    sum a = (4.238490248361764e-12,4.2184400538917074e-12,9.79516213234172e-13)
    sum e = 1.2543812354765903e-10
    sum de = 2.721242284402208e-15
Info: cfl dt = 1.6668527585305342 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2915e+05 | 99420 |      1 | 4.339e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13994.993594819329 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 226.18109258011143, dt = 1.6668527585305342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99420.0 min = 99420.0 factor = 1
 - strategy "round robin" : max = 94449.0 min = 94449.0 factor = 0.95
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     : 5.20 us    (1.6%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 306.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.7%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.956710951504989e-10,-1.9077661408016635e-10,-3.5461401801216784e-10)
    sum a = (4.042968180732172e-12,4.5564955947085916e-12,1.0078159638245712e-12)
    sum e = 1.254367876049841e-10
    sum de = 2.7009496637915498e-15
Info: cfl dt = 1.6552148159756934 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6846e+05 | 99419 |      1 | 3.703e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16203.271046326152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 227.84794533864195, dt = 1.6552148159756934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99419.0 min = 99419.0 factor = 1
 - strategy "round robin" : max = 94448.0 min = 94448.0 factor = 0.95
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     : 5.71 us    (1.5%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 363.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.3%)
central potential accretion : +=  2e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.920732207479294e-10,-1.897187910678449e-10,-3.4262319458544294e-10)
    sum a = (3.901515461893162e-12,4.460600254862986e-12,6.317766784523693e-13)
    sum e = 1.2543067615615674e-10
    sum de = 2.6635122130030974e-15
Info: cfl dt = 1.615706378254936 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3504e+05 | 99417 |      1 | 4.230e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14087.71255884198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 229.50316015461763, dt = 1.615706378254936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99417.0 min = 99417.0 factor = 1
 - strategy "round robin" : max = 94446.1 min = 94446.1 factor = 0.95
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     : 5.34 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 365.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.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.022333553473129e-10,-1.869342730038143e-10,-3.497568563135892e-10)
    sum a = (3.8340354994141165e-12,4.993349741453073e-12,3.80699596353524e-13)
    sum e = 1.2542347517104703e-10
    sum de = 2.6199199468986724e-15
Info: cfl dt = 1.4056560399259905 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5930e+05 | 99415 |      1 | 3.834e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15170.840323286533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 231.11886653287257, dt = 1.4056560399259905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99415.0 min = 99415.0 factor = 1
 - strategy "round robin" : max = 94444.2 min = 94444.2 factor = 0.95
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.59 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 359.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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 = (9.012265260752833e-10,-1.856965828952172e-10,-3.4417671549699575e-10)
    sum a = (3.726588048153173e-12,5.0630014084766785e-12,8.037529147401509e-14)
    sum e = 1.2541532249174426e-10
    sum de = 2.5852301825666157e-15
Info: cfl dt = 1.4198094116249527 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4650e+05 | 99414 |      1 | 4.033e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12547.532049811654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 232.52452257279856, dt = 1.4198094116249527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99414.0 min = 99414.0 factor = 1
 - strategy "round robin" : max = 94443.3 min = 94443.3 factor = 0.95
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.46 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 355.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
central potential accretion : +=  1e-08
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.018625382588778e-10,-1.753239005547973e-10,-3.356888115882941e-10)
    sum a = (3.5086614707256118e-12,5.090022801691463e-12,2.065093200953025e-14)
    sum e = 1.2541430544854753e-10
    sum de = 2.554535141377313e-15
Info: cfl dt = 1.443177664818964 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7132e+05 | 99413 |      1 | 3.664e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13949.778069275473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 233.9443319844235, dt = 1.443177664818964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99413.0 min = 99413.0 factor = 1
 - strategy "round robin" : max = 94442.3 min = 94442.3 factor = 0.95
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     : 5.58 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 377.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (71.1%)
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.010549955941555583 unconverged cnt = 3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.098199126670503e-10,-1.5822751150458718e-10,-3.342233408862698e-10)
    sum a = (3.2813113933214236e-12,5.3791099764733614e-12,1.4032173301595149e-13)
    sum e = 1.2541356565405222e-10
    sum de = 2.5236773562188924e-15
Info: cfl dt = 1.3967181903213972 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6858e+05 | 99412 |      1 | 5.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8810.368667313676 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 235.38750964924247, dt = 1.3967181903213972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99412.0 min = 99412.0 factor = 1
 - strategy "round robin" : max = 94441.4 min = 94441.4 factor = 0.95
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.27 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 365.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.14292055492042e-10,-1.5050219166874135e-10,-3.3411115119617275e-10)
    sum a = (3.1194589945558615e-12,5.669870269986519e-12,4.4814208342188474e-14)
    sum e = 1.2541569340926173e-10
    sum de = 2.493740827032141e-15
Info: cfl dt = 1.4333309950644495 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6420e+05 | 99412 |      1 | 3.763e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13363.261128497066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 236.78422783956387, dt = 1.4333309950644495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99412.0 min = 99412.0 factor = 1
 - strategy "round robin" : max = 94441.4 min = 94441.4 factor = 0.95
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.71 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 338.40 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.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.297182164526459e-10,-1.277827136686431e-10,-3.4158151225037363e-10)
    sum a = (2.8410421792312165e-12,6.274818887089138e-12,3.559797734983402e-13)
    sum e = 1.254101281947332e-10
    sum de = 2.4469538526573826e-15
Info: cfl dt = 1.3674802874223644 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6961e+05 | 99410 |      1 | 3.687e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13994.618225804204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 238.2175588346283, dt = 1.3674802874223644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99410.0 min = 99410.0 factor = 1
 - strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
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     : 5.30 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 377.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.334770008190207e-10,-1.189962832659729e-10,-3.411482932376769e-10)
    sum a = (2.658603227050504e-12,6.551353526897016e-12,3.0628211069983723e-13)
    sum e = 1.2541151968931105e-10
    sum de = 2.4141930941151774e-15
Info: cfl dt = 1.3345096425115344 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6810e+05 | 99410 |      1 | 3.708e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13276.857290269556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 239.58503912205066, dt = 1.3345096425115344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99410.0 min = 99410.0 factor = 1
 - strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
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     : 5.47 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 368.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.369001916257614e-10,-1.1006436097836977e-10,-3.407735370947268e-10)
    sum a = (2.4721980333312997e-12,6.822306958996729e-12,2.7402736116456773e-13)
    sum e = 1.2541379301657292e-10
    sum de = 2.3803733694801464e-15
Info: cfl dt = 1.332902720305459 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6995e+05 | 99410 |      1 | 3.683e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13045.940825769021 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 240.9195487645622, dt = 1.332902720305459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99410.0 min = 99410.0 factor = 1
 - strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
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     : 5.59 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.42 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.400710113452066e-10,-1.0079009449011928e-10,-3.4042980741672484e-10)
    sum a = (2.2780645941049818e-12,7.092593797524601e-12,2.5815223665868067e-13)
    sum e = 1.2541691038643519e-10
    sum de = 2.344873939690999e-15
Info: cfl dt = 1.339111745379622 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7112e+05 | 99410 |      1 | 3.667e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13086.651939807796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 242.25245148486766, dt = 1.339111745379622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99410.0 min = 99410.0 factor = 1
 - strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
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.41 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 313.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.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.281574669449602e-10,-1.1176411741708453e-10,-3.32816927930705e-10)
    sum a = (2.213171186843491e-12,7.003734547023822e-12,-2.9571767547133795e-13)
    sum e = 1.2540478677948637e-10
    sum de = 2.2745666813022697e-15
Info: cfl dt = 1.324710932109679 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7238e+05 | 99407 |      1 | 3.650e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13209.05796189494 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 243.5915632302473, dt = 1.324710932109679 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99407.0 min = 99407.0 factor = 1
 - strategy "round robin" : max = 94436.6 min = 94436.6 factor = 0.95
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     : 26.61 us   (6.8%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 347.83 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (66.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.318371055768232e-10,-9.338043910848547e-11,-3.286364416154438e-10)
    sum a = (1.926037418533293e-12,7.189604684878103e-12,-7.234138214755752e-14)
    sum e = 1.254023033500738e-10
    sum de = 2.234209205429669e-15
Info: cfl dt = 1.2587908452696879 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7121e+05 | 99406 |      1 | 3.665e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13010.9416474806 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 244.91627416235696, dt = 1.2587908452696879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99406.0 min = 99406.0 factor = 1
 - strategy "round robin" : max = 94435.7 min = 94435.7 factor = 0.95
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     : 5.64 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 383.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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 = (9.28114690680342e-10,-8.825477047792993e-11,-3.217830102734163e-10)
    sum a = (1.7444695253702712e-12,7.201521757483524e-12,-1.71599556768759e-13)
    sum e = 1.2539821612961766e-10
    sum de = 2.1887765888871605e-15
Info: cfl dt = 1.2624096918357373 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7324e+05 | 99405 |      1 | 3.638e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12456.520089122501 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 246.17506500762664, dt = 1.2624096918357373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99405.0 min = 99405.0 factor = 1
 - strategy "round robin" : max = 94434.8 min = 94434.8 factor = 0.95
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     : 5.02 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 323.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (65.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.301949754207862e-10,-7.899711306612163e-11,-3.2198979815026883e-10)
    sum a = (1.545435632414864e-12,7.461060506997286e-12,-1.449977052443474e-13)
    sum e = 1.2540106202388125e-10
    sum de = 2.1527312874887496e-15
Info: cfl dt = 1.1715908132388186 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7426e+05 | 99405 |      1 | 3.624e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12538.88876046465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 247.43747469946237, dt = 0.15224662604907735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99405.0 min = 99405.0 factor = 1
 - strategy "round robin" : max = 94434.8 min = 94434.8 factor = 0.95
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     : 5.30 us    (1.3%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 377.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.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.182841425488172e-10,-9.078422161849756e-11,-3.1260606129835974e-10)
    sum a = (1.6084928910293652e-12,7.116389521544734e-12,-4.977547906389658e-13)
    sum e = 1.2537458559857512e-10
    sum de = 2.1277148110618773e-15
Info: cfl dt = 1.1746144217351369 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7722e+05 | 99403 |      1 | 3.586e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1528.512896164974 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 183                                                     [SPH][rank=0]
Info: time since start : 156.97535566000002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
              - took 5.39 ms, bandwidth = 1.03 GB/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     : 5.67 us    (56.4%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
              - took 4.93 ms, bandwidth = 2.58 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 725.60 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 723.59 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 282.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 281.21 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 450.68 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 451.22 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.022126033 s
Info: compute_column_integ took 737.66 ms                            [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576    [sph::CartesianRender][rank=0]
Info: compute_column_integ took 722.77 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)

521 import matplotlib
522 import matplotlib.pyplot as plt
523
524 # Uncomment this and replace by you dump folder, here since it is just above i comment it out
525 # dump_folder = "my_masterpiece"
526 # dump_folder += "/"
527
528 face_on_render_kwargs = {
529     "x_unit": "au",
530     "y_unit": "au",
531     "time_unit": "second",
532     "x_label": "x",
533     "y_label": "y",
534 }
535
536 column_density_plot.render_all(
537     **face_on_render_kwargs,
538     field_unit="kg.m^-2",
539     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
540     vmin=1,
541     vmax=1e7,
542     norm="log",
543 )
544
545 column_density_plot_hollywood.render_all(
546     **face_on_render_kwargs,
547     field_unit="kg.m^-2",
548     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
549     vmin=1,
550     vmax=1e7,
551     norm="log",
552     holywood_mode=True,
553 )
554
555 vertical_density_plot.render_all(
556     **face_on_render_kwargs,
557     field_unit="kg.m^-3",
558     field_label="$\\rho$",
559     vmin=1e-5,
560     vmax=1e-2,
561     norm="log",
562 )
563
564 dt_part_slice_plot.render_all(
565     **face_on_render_kwargs,
566     field_unit="second",
567     field_label="$\\Delta t$",
568     vmin=1e-2,
569     vmax=1e2,
570     norm="log",
571     contour_list=[1e-2, 1e-1, 1, 1e1, 1e2],
572 )
573
574 column_average_vz_plot.render_all(
575     **face_on_render_kwargs,
576     field_unit="lightspeed",
577     field_label="$\\langle v_z \\rangle_z$",
578     cmap="seismic",
579     cmap_bad_color="white",
580     vmin=-0.5,
581     vmax=0.5,
582 )
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

591 import matplotlib.animation as animation
592 from shamrock.utils.plot import show_image_sequence
593
594 render_gif = True

Do it for rho integ

599 if render_gif:
600     ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
601     if ani is not None:
602         plt.show()

Same but in hollywood

607 if render_gif:
608     ani = column_density_plot_hollywood.render_gif(
609         gif_filename="rho_integ_hollywood.gif", save_animation=True
610     )
611     if ani is not None:
612         plt.show()

For the vertical density plot

617 if render_gif and shamrock.sys.world_rank() == 0:
618     ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
619     if ani is not None:
620         plt.show()

Make a gif from the plots

624 if render_gif and shamrock.sys.world_rank() == 0:
625     ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
626     if ani is not None:
627         plt.show()

Make a gif from the plots

631 if render_gif and shamrock.sys.world_rank() == 0:
632     ani = column_average_vz_plot.render_gif(
633         gif_filename="column_average_vz.gif", save_animation=True
634     )
635     if ani is not None:
636         plt.show()

helper function to load data from JSON files

641 def load_data_from_json(filename, key):
642     filepath = os.path.join(analysis_folder, filename)
643     with open(filepath, "r") as fp:
644         data = json.load(fp)[key]
645     t = [d["t"] for d in data]
646     values = [d[key] for d in data]
647     return t, values

load the json file for barycenter

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

load the json file for disc_mass

670 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
671
672 plt.figure(figsize=(8, 5), dpi=200)
673
674 plt.plot(t, disc_mass)
675 plt.xlabel("t [seconds]")
676 plt.ylabel("disc_mass")
677 plt.savefig(analysis_folder + "disc_mass.png")
678 plt.show()
run circular disc lense thirring

load the json file for total_momentum

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

load the json file for energies

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

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

718 perf_analysis.plot_perf_history(close_plots=False)
719 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: (3 minutes 52.629 seconds)

Estimated memory usage: 920 MB

Gallery generated by Sphinx-Gallery