Production run: Circular disc & central sink particle#

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

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 from shamrock.utils.numba_helper import maybe_njit
50 from shamrock.utils.SimulationRunner import SimulationRunner, callback, simulation_setup
51
52 import shamrock
53
54 # If we use the shamrock executable to run this script instead of the python interpreter,
55 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
56 if not shamrock.sys.is_initialized():
57     shamrock.change_loglevel(1)
58     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

62 shamrock.matplotlib.set_shamrock_mpl_style()

Setup units

68 si = shamrock.UnitSystem()
69 sicte = shamrock.Constants(si)
70 codeu = shamrock.UnitSystem(
71     unit_time=sicte.year(),
72     unit_length=sicte.au(),
73     unit_mass=sicte.sol_mass(),
74 )

List parameters

 79 # Resolution
 80 Npart = 100000
 81
 82 # Domain decomposition parameters
 83 scheduler_split_val = int(1.0e7)  # split patches with more than 1e7 particles
 84 scheduler_merge_val = scheduler_split_val // 16
 85
 86 dt_stop = 0.02  # Interval between analysis
 87 t_end = 30 * dt_stop  # So 30 analysis here
 88
 89 # Sink parameters
 90 center_mass = 1.0
 91 center_racc = 0.8
 92
 93 # Disc parameters
 94 disc = shamrock.utils.disc_setup.StandardDisc(
 95     units=codeu,
 96     center_mass=center_mass,
 97     disc_mass=0.01,  # sol mass
 98     rin=1.0,  # au
 99     rout=10.0,  # au
100     H_r_0=0.05,
101     q=0.5,
102     p=3.0 / 2.0,
103     r0=1.0,
104     rotation="subkeplerian_3d",
105     inner_tapering=True,
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 sim_folder = f"_to_trash/circular_disc_sink_{Npart}/"
118
119 dump_folder = sim_folder + "dump/"
120 analysis_folder = sim_folder + "analysis/"
121 plot_folder = analysis_folder + "plots/"
122 dump_prefix = dump_folder + "dump_"
123
124
125 bsize = disc.rout * 2
126 bmin = (-bsize, -bsize, -bsize)
127 bmax = (bsize, bsize, bsize)
128
129 profiles = disc.get_profiles()

Create the dump directory if it does not exist

133 if shamrock.sys.world_rank() == 0:
134     os.makedirs(sim_folder, exist_ok=True)
135     os.makedirs(dump_folder, exist_ok=True)
136     os.makedirs(analysis_folder, exist_ok=True)
137     os.makedirs(plot_folder, exist_ok=True)

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

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

Declare the simulation class

156 class Simulation(SimulationRunner):
157     # Use the global vars defined at the top of the file
158     t_end = t_end
159     dump_prefix = dump_prefix
160
161     # If there are multiple callbacks at the same time, they will be run in the declaration order
162
163     @callback(tsim_interval=dt_stop)  # Do the analysis every dt_stop
164     def analysis_plots(self, ianalysis):
165         # Run all the analysis modules (declared below)
166         for a in self.analysis_modules:
167             a.analysis_save(ianalysis)
168
169     def get_vtk_dump_name(self, idump):
170         return self.dump_prefix + f"{idump:07}" + ".vtk"
171
172     @callback(tsim_interval=dt_stop * 4)  # So once every 4 analysis
173     def vtk_dump(self, idump):
174         self.model.do_vtk_dump(self.get_vtk_dump_name(idump), True)
175
176     @callback(walltime_interval=30.0)  # Checkpoint the simulation every 30 seconds
177     def checkpoint(self, icheckpoint):
178         self.do_checkpoint(icheckpoint, purge_old_dumps=True, keep_first=1, keep_last=3)
179
180     def setup_config(self):
181
182         # Generate the default config
183         cfg = model.gen_default_config()
184         cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
185         cfg.set_eos_locally_isothermalLP07(cs0=disc.cs0(), q=disc.q, r0=disc.r0)
186
187         cfg.add_kill_sphere(
188             center=(0, 0, 0), radius=bsize
189         )  # kill particles outside the simulation box
190
191         cfg.set_units(codeu)
192         cfg.set_particle_mass(disc.part_mass(Npart))
193         # Set the CFL
194         cfg.set_cfl_cour(C_cour)
195         cfg.set_cfl_force(C_force)
196         cfg.set_show_cfl_detail(True)
197
198         # Enable this to debug the neighbor counts
199         # cfg.set_show_neigh_stats(True)
200
201         # Standard way to set the smoothing length (e.g. Price et al. 2018)
202         # cfg.set_smoothing_length_density_based()
203
204         # To use the dt field analysis
205         cfg.set_save_dt_to_fields(True)
206
207         # Standard density based smoothing length but with a neighbor count limit
208         # Use it if you have large slowdowns due to giant particles
209         # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
210         cfg.set_smoothing_length_density_based_neigh_lim(500)
211
212         # Set the solver config to be the one stored in cfg
213         self.model.set_solver_config(cfg)
214
215     def setup_sph_particles(self):
216
217         setup = model.get_setup()
218         gen_disc = disc.make_generator(setup, Npart, random_seed=666)
219
220         # Print the dot graph of the setup
221         if shamrock.sys.world_rank() == 0:
222             print(gen_disc.get_dot())
223
224         # Apply the setup
225         setup.apply_setup(gen_disc)
226
227         # correct the momentum and barycenter of the disc to 0
228         analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
229         total_momentum = analysis_momentum.get_total_momentum()
230
231         if shamrock.sys.world_rank() == 0:
232             print(f"disc momentum = {total_momentum}")
233
234         model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
235
236         # Correct the barycenter before adding the sink
237         analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
238         barycenter, disc_mass = analysis_barycenter.get_barycenter()
239
240         if shamrock.sys.world_rank() == 0:
241             print(f"disc barycenter = {barycenter}")
242
243         model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
244
245         total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
246
247         if shamrock.sys.world_rank() == 0:
248             print(f"disc momentum after correction = {total_momentum}")
249
250         barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
251
252         if shamrock.sys.world_rank() == 0:
253             print(f"disc barycenter after correction = {barycenter}")
254
255         if not np.allclose(total_momentum, 0.0):
256             raise RuntimeError("disc momentum is not 0")
257         if not np.allclose(barycenter, 0.0):
258             raise RuntimeError("disc barycenter is not 0")
259
260         # now that the barycenter & momentum are 0, we can add the sink
261         model.add_sink(center_mass, (0, 0, 0), (0, 0, 0), center_racc)
262
263     @simulation_setup
264     def setup(self):
265
266         self.setup_config()
267
268         # Print the solver config
269         model.get_current_config().print_status()
270
271         # Init the scheduler & fields
272         model.init_scheduler(scheduler_split_val, scheduler_merge_val)
273
274         # Set the simulation box size
275         model.resize_simulation_box(bmin, bmax)
276
277         # Setup particles & sink
278         self.setup_sph_particles()
279
280         # Run a single step to init the integrator and smoothing length of the particles
281         # Here the htolerance is the maximum factor of evolution of the smoothing length in each
282         # Smoothing length iterations, increasing it affect the performance negatively but
283         # increase the convergence rate of the smoothing length
284         # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
285         # Note that both ``change_htolerances`` can be removed and it will work the same but
286         # would converge more slowly at the first timestep
287
288         model.change_htolerances(coarse=1.3, fine=1.1)
289         model.timestep()
290         model.change_htolerances(coarse=1.1, fine=1.1)
291
292         model.solver_logs_reset_cumulated_step_time()
293         model.solver_logs_reset_step_count()

On the fly analysis

300 from shamrock.utils.analysis import (
301     AnalysisHelper,
302     ColumnDensityPlot,
303     ColumnParticleCount,
304     PerfHistory,
305     SliceDensityPlot,
306     SliceDiffVthetaProfile,
307     SliceDtPart,
308     SliceVzPlot,
309     VerticalShearGradient,
310 )
311
312 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
313
314 face_on_render_kwargs = {
315     "x_unit": "au",
316     "y_unit": "au",
317     "time_unit": "year",
318     "x_label": "x",
319     "y_label": "y",
320 }
321
322 sink_params = {
323     "sink_scale_factor": 1,
324     "sink_color": "green",
325     "sink_linewidth": 1,
326     "sink_fill": False,
327 }
328
329 column_density_plot = ColumnDensityPlot(
330     model,
331     ext_r=disc.rout * 1.5,
332     nx=1024,
333     ny=1024,
334     ex=(1, 0, 0),
335     ey=(0, 1, 0),
336     center=(0, 0, 0),
337     analysis_folder=analysis_folder,
338     analysis_prefix="rho_integ_normal",
339 )
340
341 column_density_plot.render_args = {
342     **face_on_render_kwargs,
343     "field_unit": "kg.m^-2",
344     "field_label": "$\\int \\rho \\, \\mathrm{{d}} z$",
345     "vmin": 1,
346     "vmax": 1e4,
347     "norm": "log",
348     **sink_params,
349 }
350
351 column_density_plot_hollywood = ColumnDensityPlot(
352     model,
353     ext_r=disc.rout * 1.5,
354     nx=1024,
355     ny=1024,
356     ex=(1, 0, 0),
357     ey=(0, 1, 0),
358     center=(0, 0, 0),
359     analysis_folder=analysis_folder,
360     analysis_prefix="rho_integ_hollywood",
361 )
362
363 column_density_plot_hollywood.render_args = {
364     **face_on_render_kwargs,
365     "field_unit": "kg.m^-2",
366     "field_label": "$\\int \\rho \\, \\mathrm{{d}} z$",
367     "vmin": 1,
368     "vmax": 1e4,
369     "norm": "log",
370     "holywood_mode": True,
371     **sink_params,
372 }
373
374 vertical_density_plot = SliceDensityPlot(
375     model,
376     ext_r=disc.rout * 1.1 / (16.0 / 9.0),  # aspect ratio of 16:9
377     nx=1920,
378     ny=1080,
379     ex=(1, 0, 0),
380     ey=(0, 0, 1),
381     center=(0, 0, 0),
382     analysis_folder=analysis_folder,
383     analysis_prefix="rho_slice",
384 )
385
386 vertical_density_plot.render_args = {
387     **face_on_render_kwargs,
388     "field_unit": "kg.m^-3",
389     "field_label": "$\\rho$",
390     "vmin": 1e-10,
391     "vmax": 1e-6,
392     "norm": "log",
393     **sink_params,
394 }
395
396 v_z_slice_plot = SliceVzPlot(
397     model,
398     ext_r=disc.rout * 1.1 / (16.0 / 9.0),  # aspect ratio of 16:9
399     nx=1920,
400     ny=1080,
401     ex=(1, 0, 0),
402     ey=(0, 0, 1),
403     center=(0, 0, 0),
404     analysis_folder=analysis_folder,
405     analysis_prefix="v_z_slice",
406     do_normalization=True,
407 )
408
409 v_z_slice_plot.render_args = {
410     **face_on_render_kwargs,
411     "field_unit": "m.s^-1",
412     "field_label": "$\\mathrm{v}_z$",
413     "cmap": "seismic",
414     "cmap_bad_color": "white",
415     "vmin": -300,
416     "vmax": 300,
417     **sink_params,
418 }
419
420 relative_azy_velocity_slice_plot = SliceDiffVthetaProfile(
421     model,
422     ext_r=disc.rout * 0.5 / (16.0 / 9.0),  # aspect ratio of 16:9
423     nx=1920,
424     ny=1080,
425     ex=(1, 0, 0),
426     ey=(0, 0, 1),
427     center=((disc.rin + disc.rout) / 2, 0, 0),
428     analysis_folder=analysis_folder,
429     analysis_prefix="relative_azy_velocity_slice",
430     velocity_profile=profiles.vtheta_kepler,
431     do_normalization=True,
432     min_normalization=1e-9,
433 )
434
435 relative_azy_velocity_slice_plot.render_args = {
436     **face_on_render_kwargs,
437     "field_unit": "m.s^-1",
438     "field_label": "$\\mathrm{v}_{\\theta} - v_k$",
439     "cmap": "seismic",
440     "cmap_bad_color": "white",
441     "vmin": -300,
442     "vmax": 300,
443     **sink_params,
444 }
445
446
447 vertical_shear_gradient_slice_plot = VerticalShearGradient(
448     model,
449     ext_r=disc.rout * 0.5 / (16.0 / 9.0),  # aspect ratio of 16:9
450     nx=1920,
451     ny=1080,
452     ex=(1, 0, 0),
453     ey=(0, 0, 1),
454     center=((disc.rin + disc.rout) / 2, 0, 0),
455     analysis_folder=analysis_folder,
456     analysis_prefix="vertical_shear_gradient_slice",
457     do_normalization=True,
458     min_normalization=1e-9,
459 )
460
461 vertical_shear_gradient_slice_plot.render_args = {
462     **face_on_render_kwargs,
463     "field_unit": "yr^-1",
464     "field_label": "${{\\partial R \\Omega}}/{{\\partial z}}$",
465     "cmap": "seismic",
466     "cmap_bad_color": "white",
467     "vmin": -1,
468     "vmax": 1,
469     **sink_params,
470 }
471
472 dt_part_slice_plot = SliceDtPart(
473     model,
474     ext_r=disc.rout * 0.5 / (16.0 / 9.0),  # aspect ratio of 16:9
475     nx=1920,
476     ny=1080,
477     ex=(1, 0, 0),
478     ey=(0, 0, 1),
479     center=((disc.rin + disc.rout) / 2, 0, 0),
480     analysis_folder=analysis_folder,
481     analysis_prefix="dt_part_slice",
482 )
483
484 dt_part_slice_plot.render_args = {
485     **face_on_render_kwargs,
486     "field_unit": "year",
487     "field_label": "$\\Delta t$",
488     "vmin": 1e-4,
489     "vmax": 1,
490     "norm": "log",
491     "contour_list": [1e-4, 1e-3, 1e-2, 1e-1, 1],
492     **sink_params,
493 }
494
495
496 column_particle_count_plot = ColumnParticleCount(
497     model,
498     ext_r=disc.rout * 1.5,
499     nx=1024,
500     ny=1024,
501     ex=(1, 0, 0),
502     ey=(0, 1, 0),
503     center=(0, 0, 0),
504     analysis_folder=analysis_folder,
505     analysis_prefix="particle_count",
506 )
507
508 column_particle_count_plot.render_args = {
509     **face_on_render_kwargs,
510     "field_unit": None,
511     "field_label": "$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
512     "vmin": 1,
513     "vmax": 1e2,
514     "norm": "log",
515     "contour_list": [1, 10, 100, 1000],
516     **sink_params,
517 }
518
519
520 profile_plot = AnalysisHelper(
521     analysis_folder=os.path.join(analysis_folder, "plots"),
522     analysis_prefix="density_profile",
523 )
524
525
526 class profiles_plot_analysis:
527     def analysis_save(self, ianalysis):
528
529         rho_field = model.compute_field("rho", "f64")
530         hpart_field = model.compute_field("hpart", "f64")
531
532         def internal(size: int, x: np.array, y: np.array, z: np.array) -> np.array:
533             r = np.sqrt(x**2 + y**2 + z**2)
534             return r
535
536         internal = maybe_njit(internal)
537
538         def custom_getter(size: int, dic_out: dict) -> np.array:
539             return internal(
540                 size,
541                 dic_out["xyz"][:, 0],
542                 dic_out["xyz"][:, 1],
543                 dic_out["xyz"][:, 2],
544             )
545
546         r_field = model.compute_field("custom", "f64", custom_getter)
547
548         print(rho_field, r_field)
549
550         x_min = center_racc / 2.0
551         x_max = disc.rout * 1.1
552         x_min_log = np.log10(x_min)
553         x_max_log = np.log10(x_max)
554
555         bin_edges_x1d = np.logspace(x_min_log, x_max_log, 2049)
556
557         histo = shamrock.compute_histogram(
558             bin_edges=bin_edges_x1d,
559             x_field=r_field,
560             y_field=rho_field,
561             do_average=True,
562         )
563
564         histo_convolve = shamrock.compute_histogram_convolve_x(
565             bin_edges=bin_edges_x1d,
566             x_field=r_field,
567             y_field=rho_field,
568             size_field=hpart_field,
569             do_average=True,
570         )
571
572         bin_edges_x = np.logspace(x_min_log, x_max_log, 1025)
573         bin_edges_y = np.logspace(-6, -3, 1025)
574         histo_top = shamrock.compute_histogram_2d(
575             bin_edges_x=bin_edges_x,
576             bin_edges_y=bin_edges_y,
577             x_field=r_field,
578             y_field=rho_field,
579         )
580         histo_2d = np.array(histo_top).reshape(len(bin_edges_x) - 1, len(bin_edges_y) - 1)
581
582         data = {
583             "bin_edges_x1d": bin_edges_x1d,
584             "bin_edges_x": bin_edges_x,
585             "bin_edges_y": bin_edges_y,
586             "histo": histo,
587             "histo_convolve": histo_convolve,
588             "histo_2d": histo_2d,
589             "time": model.get_time(),
590         }
591
592         profile_plot.analysis_save(ianalysis, data)
593
594
595 def save_analysis_data(filename, key, value, ianalysis):
596     """Helper to save analysis data to a JSON file."""
597     if shamrock.sys.world_rank() == 0:
598         filepath = os.path.join(analysis_folder, filename)
599         try:
600             with open(filepath, "r") as fp:
601                 data = json.load(fp)
602         except (FileNotFoundError, json.JSONDecodeError):
603             data = {key: []}
604         data[key] = data[key][:ianalysis]
605         data[key].append({"t": model.get_time(), key: value})
606         with open(filepath, "w") as fp:
607             json.dump(data, fp, indent=4)
608
609
610 class curves_analysis:
611     def analysis_save(self, ianalysis):
612         barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
613
614         total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
615         angular_momentum = shamrock.model_sph.analysisAngularMomentum(
616             model=model
617         ).get_angular_momentum()
618
619         potential_energy = shamrock.model_sph.analysisEnergyPotential(
620             model=model
621         ).get_potential_energy()
622
623         kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
624
625         save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
626         save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
627         save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
628         save_analysis_data("angular_momentum.json", "angular_momentum", angular_momentum, ianalysis)
629         save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
630         save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
631
632         sinks = model.get_sinks()
633         save_analysis_data("sinks.json", "sinks", sinks, ianalysis)

Declare the simulation and add analysis modules

Run the simulation

659 sim.run()
[Simulation] Running setup function: setup

----- 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": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "type": "none"
            },
            "evol_mode": {
                "type": "none"
            },
            "mode": {
                "type": "none"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs0": 0.31415811727277826,
            "eos_type": "locally_isothermal_lp07",
            "q": 0.5,
            "r0": 1.0
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 1e-07,
        "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"
        },
        "neigh_cache_strategy": "two_stage",
        "particle_killing": [
            {
                "center": [
                    0.0,
                    0.0,
                    0.0
                ],
                "radius": 20.0,
                "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": true,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "max_neigh_count": 500,
            "type": "density_based_neigh_lim"
        },
        "tree_reduction_level": 3,
        "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": 31557600.0
        }
    }
]
------------------------------------
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.8e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.266109345 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     : 32.76 us   (85.7%)
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     : 872.00 ns  (0.1%)
   patch tree reduce : 2.07 us    (0.3%)
   gen split merge   : 714.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.2%)
   LB compute        : 609.24 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.6%)
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.008065693 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 |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.28584143300000003 s
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
disc momentum = (-5.7716191548711e-05, -1.6463520502009903e-05, 0.0)
disc barycenter = (-0.012291470061274741, 0.017368596108323628, -0.00012045694537282066)
disc momentum after correction = (-1.2197697956935552e-17, 1.5754812818929986e-19, 0.0)
disc barycenter after correction = (-7.657177843178875e-17, -9.486769009248164e-16, -4.5083328617610136e-17)
---------------- 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.25 us    (2.3%)
   patch tree reduce : 882.00 ns  (0.4%)
   gen split merge   : 737.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.6%)
   LB compute        : 214.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (68.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}}  [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.5778889114264554 unconverged cnt = 100000
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.6874151718672662 unconverged cnt = 99995
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.7295436468151849 unconverged cnt = 99993
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.933239763171926 unconverged cnt = 99984
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 99955
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 99806
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 98487
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 88329
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 59805
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 9344
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9332397631719261 unconverged cnt = 116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7023718252603425e-18,-1.383710923619219e-17,0)
    sum a = (5.9969932665604464e-18,2.1955093992831465e-18,-1.0164395367051604e-20)
    sum e = 0.04534035515164238
    sum de = 3.550990632883029e-06
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.30e-05 |
|     force | 1.12e-04 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 8.299339345110972e-05 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    | 3.8337e+04 | 100000 |      1 | 2.608e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

[Simulation] Setting up callbacks states
[Simulation] Setup done

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

Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = 0.00s)        [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 11.489389479000002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 0):
   -> t = 0.0 >= 0.0
--------------------------------
Warning: step count is 0, skipping save of perf history
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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 376.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 339.06 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/circular_disc_sink_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000000.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 378.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 350.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000000.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.036556685000000005 s
Info: compute_slice took 611.12 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 585.47 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000000.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.015403822000000001 s
Info: compute_slice took 586.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 577.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000000.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 605.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 583.93 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000000.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000000.json
sph::RenderFieldGetter compute custom field took :  0.006924644000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Info: defaulting compute_histogram implementation to impl : {"implementation":"naive_gpu","parameters":{}}  [algs][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000000.npy
--------------------------------
[Simulation] Triggering callback "vtk_dump" (counter = 0):
   -> t = 0.0 >= 0.0
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.vtk          [VTK Dump][rank=0]
              - took 6.89 ms, bandwidth = 813.02 MB/s
--------------------------------
[Simulation] Triggering callback "checkpoint" (counter = 0):
   -> walltime = 11.48942916 >= 0.0
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000000.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (52.2%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.sham    [Shamrock Dump][rank=0]
              - took 4.92 ms, bandwidth = 2.60 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.0 -> 0.02
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.0 -> 0.08
[Simulation] Advancing callback "checkpoint"
   -> walltime = 11.48942916 -> 41.48942916

[Simulation] Evolve until next trigger(s) :
   -> t = 0.02 (current = 0.0)
   -> iter = None (current = 0)
   -> walltime = 41.48942916 (current = 21.482857102)

Info: evolve_until (target_time = 0.02s, niter_max = -1, max_walltime = 41.49s)       [SPH][rank=0]
---------------- t = 0, dt = 8.299339345110972e-05 ----------------
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     : 4.10 us    (1.8%)
   patch tree reduce : 2.45 us    (1.1%)
   gen split merge   : 790.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.7%)
   LB compute        : 201.91 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 8.61 us    (3.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4723312136085502e-09,-5.0268621517597225e-09,-5.561554623681724e-10)
    sum a = (-1.473159701864679e-17,-3.496552006265752e-18,2.710505431213761e-20)
    sum e = 0.04534035643948735
    sum de = 3.7822822032268288e-06
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.82e-03 |
|     force | 3.80e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002822624953667106 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.2246e+05 | 100000 |      1 | 4.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.664669538527174 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.50s (niter = 10) global walltime = 21.93s (max_walltime = 41.49s)  [SPH][rank=0]
---------------- t = 8.299339345110972e-05, dt = 0.002822624953667106 ----------------
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     : 7.26 us    (3.6%)
   patch tree reduce : 1.98 us    (1.0%)
   gen split merge   : 789.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.9%)
   LB compute        : 175.96 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.007015718526807e-08,-1.7099251181416677e-07,-1.891485559206566e-08)
    sum a = (1.0367683274392636e-18,3.2255014631443757e-18,-2.371692252312041e-19)
    sum e = 0.04534151488405571
    sum de = 1.1630244398130393e-05
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.62e-03 |
|     force | 6.27e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004616525338170294 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.2230e+05 | 100000 |      1 | 4.498e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.589361206884025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0029056183471182157, dt = 0.004616525338170294 ----------------
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     : 7.50 us    (3.2%)
   patch tree reduce : 2.10 us    (0.9%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.7%)
   LB compute        : 209.04 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.17079455841767e-08,-2.8126239717663456e-07,-3.0926826949612224e-08)
    sum a = (-4.851804721872632e-18,5.4752209710517974e-18,-2.541098841762901e-20)
    sum e = 0.045343503421088456
    sum de = 2.4420751905229255e-05
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.83e-03 |
|     force | 7.92e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0058304927717792495 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.2559e+05 | 100000 |      1 | 4.433e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.49247466657348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.007522143685288509, dt = 0.0058304927717792495 ----------------
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     : 6.79 us    (3.0%)
   patch tree reduce : 2.00 us    (0.9%)
   gen split merge   : 780.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.91 us    (0.9%)
   LB compute        : 200.08 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0307856402441194e-07,-3.587982708652712e-07,-3.902771887784129e-08)
    sum a = (9.012430558785756e-19,-7.860465750519907e-19,-1.3044307387716225e-19)
    sum e = 0.045345503231929145
    sum de = 4.056984806489016e-05
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.84e-03 |
|     force | 9.04e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0068432449907923475 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.2265e+05 | 100000 |      1 | 4.491e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.73315982655006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.01335263645706776, dt = 0.006647363542932241 ----------------
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     : 7.36 us    (3.0%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.94 us    (0.8%)
   LB compute        : 218.01 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1792155205872194e-07,-4.147454407250866e-07,-4.4424611396346457e-08)
    sum a = (1.1411227865409934e-17,2.981555974335137e-19,-2.1175823681357508e-19)
    sum e = 0.0453472892442846
    sum de = 5.901723516771186e-05
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 7.41e-03 |
|     force | 9.81e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.007409389763998473 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.0991e+05 | 100000 |      1 | 4.764e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.23179634949695 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 6                                                       [SPH][rank=0]
Info: time since start : 23.753846095 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 1):
   -> t = 0.02 >= 0.02
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.54 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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 340.92 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 343.68 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000001.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 378.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 356.57 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000001.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033128093000000004 s
Info: compute_slice took 638.49 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 630.82 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000001.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016947555 s
Info: compute_slice took 605.21 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 587.28 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000001.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 596.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 661.36 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000001.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000001.json
sph::RenderFieldGetter compute custom field took :  0.007449169 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000001.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.02 -> 0.04

[Simulation] Evolve until next trigger(s) :
   -> t = 0.04 (current = 0.02)
   -> iter = None (current = 5)
   -> walltime = 41.48942916 (current = 34.009586967000004)

Info: evolve_until (target_time = 0.04s, niter_max = -1, max_walltime = 41.49s)       [SPH][rank=0]
---------------- t = 0.02, dt = 0.007409389763998473 ----------------
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     : 8.18 us    (3.4%)
   patch tree reduce : 2.32 us    (1.0%)
   gen split merge   : 1.25 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.7%)
   LB compute        : 215.47 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3287241424277893e-07,-4.7025397468948745e-07,-4.938853508063767e-08)
    sum a = (-1.2434443665693129e-17,1.6805133673525319e-18,-1.4230153513872246e-19)
    sum e = 0.04534933246210186
    sum de = 7.959149422261245e-05
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 7.62e-03 |
|     force | 1.04e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.007616507374108877 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    | 2.2173e+05 | 100000 |      1 | 4.510e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.14454430722376 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 3) global walltime = 34.46s (max_walltime = 41.49s)  [SPH][rank=0]
---------------- t = 0.027409389763998475, dt = 0.007616507374108877 ----------------
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     : 7.62 us    (3.4%)
   patch tree reduce : 2.41 us    (1.1%)
   gen split merge   : 1.35 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.7%)
   LB compute        : 201.36 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (65.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3950710430584754e-07,-4.933953003563566e-07,-5.057217462644022e-08)
    sum a = (1.4541861638461828e-17,2.358139725155972e-18,6.776263578034403e-21)
    sum e = 0.04535046559058721
    sum de = 0.00010087438147738073
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 7.64e-03 |
|     force | 1.07e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.007637607845936329 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    | 2.2567e+05 | 100000 |      1 | 4.431e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.876606211714254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03502589713810735, dt = 0.004974102861892649 ----------------
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     : 7.90 us    (3.5%)
   patch tree reduce : 2.40 us    (1.1%)
   gen split merge   : 877.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.86 us    (0.8%)
   LB compute        : 200.97 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.40486556967518e-08,-3.294791127154875e-07,-3.285967165661355e-08)
    sum a = (-2.507217523872729e-18,-6.423897871976614e-18,-1.1689054672109345e-19)
    sum e = 0.04534625682697861
    sum de = 0.00011530158458161444
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.02e-03 |
|     force | 1.10e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008018388118515693 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    | 2.2639e+05 | 100000 |      1 | 4.417e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.539785010222175 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 35.347106846 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 2):
   -> t = 0.04 >= 0.04
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.42 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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 338.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 333.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000002.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 374.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 344.61 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000002.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033175129000000005 s
Info: compute_slice took 603.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 580.21 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000002.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.013881955000000001 s
Info: compute_slice took 581.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 568.32 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000002.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 577.67 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 576.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000002.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.42 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000002.json
sph::RenderFieldGetter compute custom field took :  0.006959088 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000002.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.04 -> 0.06

[Simulation] Evolve until next trigger(s) :
   -> t = 0.06 (current = 0.04)
   -> iter = None (current = 8)
   -> walltime = 41.48942916 (current = 45.160005413)

Info: evolve_until (target_time = 0.06s, niter_max = -1, max_walltime = 41.49s)       [SPH][rank=0]
---------------- t = 0.04, dt = 0.008018388118515693 ----------------
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     : 8.26 us    (3.1%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 938.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 2.04 us    (0.8%)
   LB compute        : 243.18 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (82.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.556137254926301e-07,-5.391888208631659e-07,-5.2763620369567363e-08)
    sum a = (2.1819568721270777e-18,2.710505431213761e-18,-1.4907779871675686e-19)
    sum e = 0.04535291642837693
    sum de = 0.00013740466831394573
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.16e-03 |
|     force | 1.12e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008163088618942634 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.0843e+05 | 100000 |      1 | 4.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.16657186210934 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 45.64s > 41.49s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 1):
   -> walltime = 45.640516428000005 >= 41.48942916
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000001.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (51.3%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.sham    [Shamrock Dump][rank=0]
              - took 6.58 ms, bandwidth = 1.95 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 45.640516428000005 -> 75.64051642800001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.06 (current = 0.04801838811851569)
   -> iter = None (current = 9)
   -> walltime = 75.64051642800001 (current = 45.649541433)

Info: evolve_until (target_time = 0.06s, niter_max = -1, max_walltime = 75.64s)       [SPH][rank=0]
---------------- t = 0.04801838811851569, dt = 0.008163088618942634 ----------------
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     : 3.62 us    (1.4%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 777.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.6%)
   LB compute        : 242.00 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.666206038421279e-07,-5.627212468674015e-07,-5.332429836398629e-08)
    sum a = (-7.169286865560398e-18,2.8731357570865868e-18,1.6940658945086007e-21)
    sum e = 0.04535447030362765
    sum de = 0.0001603142028096089
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.24e-03 |
|     force | 1.14e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008243253479581322 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.2177e+05 | 100000 |      1 | 4.509e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.17274182524565 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.22s (niter = 16) global walltime = 46.10s (max_walltime = 75.64s)  [SPH][rank=0]
---------------- t = 0.056181476737458325, dt = 0.003818523262541673 ----------------
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     : 7.02 us    (3.4%)
   patch tree reduce : 2.50 us    (1.2%)
   gen split merge   : 850.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.8%)
   LB compute        : 179.72 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (58.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.284690471001115e-08,-2.7006750290219367e-07,-2.472726776386847e-08)
    sum a = (3.530433324155924e-18,8.51098705401121e-18,-1.2027867851011065e-19)
    sum e = 0.04534767760370942
    sum de = 0.00017180904152953663
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.26e-03 |
|     force | 1.16e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008255378926082517 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.9906e+05 | 100000 |      1 | 5.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.36442037604448 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 12                                                      [SPH][rank=0]
Info: time since start : 46.604187664 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 3):
   -> t = 0.06 >= 0.06
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.50 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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 340.12 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 342.44 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000003.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 377.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 341.25 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000003.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.032940853 s
Info: compute_slice took 669.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 580.17 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000003.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012949294 s
Info: compute_slice took 599.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 582.51 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000003.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 589.97 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 599.14 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000003.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000003.json
sph::RenderFieldGetter compute custom field took :  0.007424664 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000003.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.06 -> 0.08

[Simulation] Evolve until next trigger(s) :
   -> t = 0.08 (current = 0.06)
   -> iter = None (current = 11)
   -> walltime = 75.64051642800001 (current = 56.669848507000005)

Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = 75.64s)       [SPH][rank=0]
---------------- t = 0.06, dt = 0.008255378926082517 ----------------
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     : 8.25 us    (3.4%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.6%)
   LB compute        : 219.23 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.848401410220086e-07,-5.909273873357987e-07,-5.3217054733123854e-08)
    sum a = (1.4995871298190133e-17,-2.4123498337802474e-18,1.7957098481791167e-19)
    sum e = 0.04535683877002931
    sum de = 0.00019441828226589227
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.54e-03 |
|     force | 1.17e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008543863412427724 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    | 2.0457e+05 | 100000 |      1 | 4.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.79662775799116 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.40s (niter = 9) global walltime = 57.16s (max_walltime = 75.64s)  [SPH][rank=0]
---------------- t = 0.06825537892608252, dt = 0.008543863412427724 ----------------
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     : 6.97 us    (3.5%)
   patch tree reduce : 1.96 us    (1.0%)
   gen split merge   : 886.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.18 us    (1.1%)
   LB compute        : 174.39 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (66.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0592620832183165e-07,-6.275483832314765e-07,-5.448624177385039e-08)
    sum a = (6.505213034913027e-19,-6.776263578034403e-18,-6.098637220230962e-20)
    sum e = 0.045359301938814274
    sum de = 0.00021833114543093796
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.53e-03 |
|     force | 1.18e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008531871046542256 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.2030e+05 | 100000 |      1 | 4.539e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.75973299162087 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07679924233851025, dt = 0.0032007576614897504 ----------------
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     : 7.43 us    (2.9%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.7%)
   LB compute        : 228.79 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.380577405730721e-08,-2.413090225833402e-07,-2.0156470800438826e-08)
    sum a = (-1.7076184216646695e-18,-6.7220534694101275e-18,1.2027867851011065e-19)
    sum e = 0.04535105858462054
    sum de = 0.0002282856957295474
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 8.41e-03 |
|     force | 1.19e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.008411770373027606 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    | 2.2289e+05 | 100000 |      1 | 4.486e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.68346537790716 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 58.062958872 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 4):
   -> t = 0.08 >= 0.08
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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 344.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 341.34 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000004.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 376.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 342.43 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000004.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033380258 s
Info: compute_slice took 630.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 594.73 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000004.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.015984465 s
Info: compute_slice took 596.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 592.99 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000004.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 596.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 625.80 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000004.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.59 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000004.json
sph::RenderFieldGetter compute custom field took :  0.007447553000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000004.npy
--------------------------------
[Simulation] Triggering callback "vtk_dump" (counter = 1):
   -> t = 0.08 >= 0.08
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.vtk          [VTK Dump][rank=0]
              - took 4.93 ms, bandwidth = 1.14 GB/s
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.08 -> 0.1
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.08 -> 0.16

[Simulation] Evolve until next trigger(s) :
   -> t = 0.1 (current = 0.08)
   -> iter = None (current = 14)
   -> walltime = 75.64051642800001 (current = 68.252444842)

Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = 75.64s)       [SPH][rank=0]
---------------- t = 0.08, dt = 0.008411770373027606 ----------------
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     : 7.21 us    (2.7%)
   patch tree reduce : 2.49 us    (0.9%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.88 us    (0.7%)
   LB compute        : 239.45 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.274913654485563e-07,-6.402564844837834e-07,-5.2702776263698986e-08)
    sum a = (1.532790821351382e-17,-5.692061405548898e-19,8.470329472543003e-20)
    sum e = 0.04536172297803547
    sum de = 0.0002510998380397265
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 7.85e-03 |
|     force | 1.20e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00784688890037809 cfl multiplier : 0.997739178322084          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.8905e+05 | 100000 |      1 | 5.290e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.2477580031923 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.59s (niter = 3) global walltime = 68.78s (max_walltime = 75.64s)  [SPH][rank=0]
---------------- t = 0.08841177037302761, dt = 0.00784688890037809 ----------------
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     : 7.20 us    (3.1%)
   patch tree reduce : 2.35 us    (1.0%)
   gen split merge   : 1.31 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.91 us    (0.8%)
   LB compute        : 202.53 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 5.26 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 997.00 ns  (65.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3168163378547611e-07,-6.119394702457381e-07,-4.8459549915549605e-08)
    sum a = (-1.6046192152785466e-17,9.893344823930228e-18,2.829090043829363e-19)
    sum e = 0.04536247738210787
    sum de = 0.0002732622996045925
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 7.43e-03 |
|     force | 1.20e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.007426914015561776 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.1724e+05 | 100000 |      1 | 4.603e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.3663328901521 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.0962586592734057, dt = 0.0037413407265943083 ----------------
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     : 13.11 us   (5.8%)
   patch tree reduce : 2.06 us    (0.9%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.96 us    (0.9%)
   LB compute        : 197.59 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2018327112375587e-07,-2.980781008656587e-07,-2.2765592935953972e-08)
    sum a = (6.1663998560113065e-18,-4.689174395999807e-18,7.453889935837843e-20)
    sum e = 0.04535672316032068
    sum de = 0.00028455994199091017
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 7.26e-03 |
|     force | 1.20e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00726299655435203 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.1827e+05 | 100000 |      1 | 4.581e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.39906662412906 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 18                                                      [SPH][rank=0]
Info: time since start : 69.701602179 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 5):
   -> t = 0.1 >= 0.1
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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 339.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 336.39 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000005.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 376.24 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 339.88 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000005.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.031613396 s
Info: compute_slice took 615.40 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 644.17 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000005.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016974709 s
Info: compute_slice took 641.99 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 636.43 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000005.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 632.68 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 593.94 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000005.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000005.json
sph::RenderFieldGetter compute custom field took :  0.006692725 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000005.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.1 -> 0.12000000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.12000000000000001 (current = 0.1)
   -> iter = None (current = 17)
   -> walltime = 75.64051642800001 (current = 79.85254535300001)

Info: evolve_until (target_time = 0.12s, niter_max = -1, max_walltime = 75.64s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.00726299655435203 ----------------
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     : 7.62 us    (3.0%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.90 us    (0.8%)
   LB compute        : 227.99 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (75.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4300341786297077e-07,-5.842977953837044e-07,-4.3862996264768456e-08)
    sum a = (-9.676504389433127e-18,-4.0657581468206416e-19,1.7787691892340307e-19)
    sum e = 0.045364408460144875
    sum de = 0.0003043719198584077
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.95e-03 |
|     force | 1.21e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006954394629420987 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    | 2.1681e+05 | 100000 |      1 | 4.612e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.68870822214788 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 80.31s > 75.64s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 2):
   -> walltime = 80.314474085 >= 75.64051642800001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000002.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (53.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.sham    [Shamrock Dump][rank=0]
              - took 6.19 ms, bandwidth = 2.07 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 80.314474085 -> 110.314474085

[Simulation] Evolve until next trigger(s) :
   -> t = 0.12000000000000001 (current = 0.10726299655435204)
   -> iter = None (current = 18)
   -> walltime = 110.314474085 (current = 80.323067257)

Info: evolve_until (target_time = 0.12s, niter_max = -1, max_walltime = 110.31s)      [SPH][rank=0]
---------------- t = 0.10726299655435204, dt = 0.006954394629420987 ----------------
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     : 4.31 us    (2.2%)
   patch tree reduce : 1.80 us    (0.9%)
   gen split merge   : 763.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.9%)
   LB compute        : 176.79 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5193413803810466e-07,-5.695123351623971e-07,-4.1353294467267546e-08)
    sum a = (5.868244258577793e-18,-7.968885967768458e-18,-5.759824041329242e-20)
    sum e = 0.04536597319431338
    sum de = 0.0003238716165418239
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.71e-03 |
|     force | 1.22e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006710364119092314 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    | 2.2098e+05 | 100000 |      1 | 4.525e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.32501312611813 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.25s (niter = 16) global walltime = 80.78s (max_walltime = 110.31s)  [SPH][rank=0]
---------------- t = 0.11421739118377303, dt = 0.005782608816226983 ----------------
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     : 6.95 us    (3.2%)
   patch tree reduce : 2.44 us    (1.1%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.04 us    (0.9%)
   LB compute        : 192.54 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (66.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2607190209261054e-07,-4.809984197440147e-07,-3.384089520523207e-08)
    sum a = (1.9664716903455837e-17,2.2768245622195593e-18,-5.082197683525802e-21)
    sum e = 0.04536576242301955
    sum de = 0.00034027504791022854
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.54e-03 |
|     force | 1.22e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006537124954353232 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    | 2.2118e+05 | 100000 |      1 | 4.521e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.04438171620467 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 81.22889159 (s)                                              [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 6):
   -> t = 0.12000000000000001 >= 0.12000000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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 333.07 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 340.43 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 373.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 338.43 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000006.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.031802111 s
Info: compute_slice took 611.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 590.89 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000006.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.013043338000000002 s
Info: compute_slice took 595.40 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 585.70 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000006.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 585.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 583.18 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000006.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000006.json
sph::RenderFieldGetter compute custom field took :  0.006980775000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000006.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.12000000000000001 -> 0.14

[Simulation] Evolve until next trigger(s) :
   -> t = 0.14 (current = 0.12000000000000001)
   -> iter = None (current = 20)
   -> walltime = 110.314474085 (current = 91.11754007900001)

Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = 110.31s)      [SPH][rank=0]
---------------- t = 0.12000000000000001, dt = 0.006537124954353232 ----------------
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     : 8.11 us    (3.7%)
   patch tree reduce : 1.94 us    (0.9%)
   gen split merge   : 909.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.10 us    (0.9%)
   LB compute        : 197.30 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.72204511598968e-07,-5.502133948123287e-07,-3.77196024743298e-08)
    sum a = (1.1709383462843448e-17,-1.8431436932253575e-18,-1.9989977555201488e-19)
    sum e = 0.04536938364036287
    sum de = 0.0003582624020782286
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.92e-03 |
|     force | 1.23e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00692212017668933 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.2185e+05 | 100000 |      1 | 4.507e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.21028600727638 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.51s (niter = 10) global walltime = 91.57s (max_walltime = 110.31s)  [SPH][rank=0]
---------------- t = 0.12653712495435324, dt = 0.00692212017668933 ----------------
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     : 7.79 us    (3.9%)
   patch tree reduce : 2.24 us    (1.1%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.8%)
   LB compute        : 176.78 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 984.00 ns  (64.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.093344504816898e-07,-5.896132902050048e-07,-3.92699389201844e-08)
    sum a = (-1.6412110385999323e-17,1.8973538018496328e-19,5.590417451878382e-20)
    sum e = 0.04537268082060433
    sum de = 0.0003772267855292782
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.65e-03 |
|     force | 1.23e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006648660411119018 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    | 2.2167e+05 | 100000 |      1 | 4.511e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.24006327909385 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13345924513104257, dt = 0.0065407548689574435 ----------------
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     : 7.09 us    (3.1%)
   patch tree reduce : 2.90 us    (1.3%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.7%)
   LB compute        : 206.90 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1466619848502305e-07,-5.63227919463184e-07,-3.6404411826236166e-08)
    sum a = (-8.131516293641283e-19,-6.830473686658678e-18,-2.0328790734103208e-19)
    sum e = 0.04537447922375484
    sum de = 0.0003952288568216859
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.43e-03 |
|     force | 1.24e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006429928351046038 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    | 2.2276e+05 | 100000 |      1 | 4.489e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.4515271322624 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 24                                                      [SPH][rank=0]
Info: time since start : 92.47002122500001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 7):
   -> t = 0.14 >= 0.14
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.49 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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 362.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 358.46 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000007.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 398.41 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 358.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000007.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.036012943000000006 s
Info: compute_slice took 661.41 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 612.53 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000007.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.013291438000000001 s
Info: compute_slice took 592.67 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 584.90 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000007.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 583.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 585.45 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000007.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000007.json
sph::RenderFieldGetter compute custom field took :  0.006815342 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000007.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.14 -> 0.16

[Simulation] Evolve until next trigger(s) :
   -> t = 0.16 (current = 0.14)
   -> iter = None (current = 23)
   -> walltime = 110.314474085 (current = 102.56843341400001)

Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = 110.31s)      [SPH][rank=0]
---------------- t = 0.14, dt = 0.006429928351046038 ----------------
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     : 7.68 us    (3.8%)
   patch tree reduce : 1.94 us    (1.0%)
   gen split merge   : 1.14 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.8%)
   LB compute        : 178.00 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3125290489953793e-07,-5.584148631700697e-07,-3.5107730122125395e-08)
    sum a = (1.7618285302889447e-18,-9.920449878242366e-18,-6.776263578034403e-20)
    sum e = 0.04537687887057939
    sum de = 0.00041273798111793867
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.71e-03 |
|     force | 1.24e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006711935939783512 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    | 2.1723e+05 | 100000 |      1 | 4.603e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.28462126120505 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 3) global walltime = 103.03s (max_walltime = 110.31s)  [SPH][rank=0]
---------------- t = 0.14642992835104604, dt = 0.006711935939783512 ----------------
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     : 6.91 us    (3.1%)
   patch tree reduce : 2.64 us    (1.2%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.99 us    (0.9%)
   LB compute        : 199.30 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6935167466935004e-07,-5.867396985788857e-07,-3.592300269081334e-08)
    sum a = (3.5236570605778894e-19,6.2341624917916505e-19,3.7269449679189215e-20)
    sum e = 0.04538025193051351
    sum de = 0.00043073692249445916
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.56e-03 |
|     force | 1.25e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006562757288077228 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    | 2.2147e+05 | 100000 |      1 | 4.515e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.513658571335924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15314186429082954, dt = 0.006562757288077228 ----------------
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     : 7.62 us    (3.6%)
   patch tree reduce : 2.12 us    (1.0%)
   gen split merge   : 956.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.8%)
   LB compute        : 189.75 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (68.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.862632296837584e-07,-5.764590157633457e-07,-3.4357947255544826e-08)
    sum a = (-2.9544509200229996e-18,3.604972223514302e-18,6.098637220230962e-20)
    sum e = 0.04538286159340456
    sum de = 0.00044827995009900186
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.44e-03 |
|     force | 1.26e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006436734922873503 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    | 2.2161e+05 | 100000 |      1 | 4.512e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.35752187498048 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15970462157890677, dt = 0.00029537842109322865 ----------------
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     : 7.48 us    (3.7%)
   patch tree reduce : 2.40 us    (1.2%)
   gen split merge   : 997.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.9%)
   LB compute        : 174.78 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (64.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.853516054543964e-08,-2.601150913579333e-08,-1.511476523676451e-09)
    sum a = (-3.686287386450715e-18,6.993104012531504e-18,2.710505431213761e-20)
    sum e = 0.04537680392925066
    sum de = 0.0004497968537130098
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.44e-03 |
|     force | 1.26e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0064401289666700555 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    | 2.2762e+05 | 100000 |      1 | 4.393e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4203784017115635 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.35s (niter = 3) global walltime = 104.37s (max_walltime = 110.31s)  [SPH][rank=0]
Info: iteration since start : 28                                                      [SPH][rank=0]
Info: time since start : 104.373112285 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 8):
   -> t = 0.16 >= 0.16
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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 337.46 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 342.32 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000008.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 375.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 355.60 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000008.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.031672048 s
Info: compute_slice took 619.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 581.18 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000008.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.015792463 s
Info: compute_slice took 594.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 620.02 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000008.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 579.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 589.49 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000008.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000008.json
sph::RenderFieldGetter compute custom field took :  0.008160106 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000008.npy
--------------------------------
[Simulation] Triggering callback "vtk_dump" (counter = 2):
   -> t = 0.16 >= 0.16
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.vtk          [VTK Dump][rank=0]
              - took 4.91 ms, bandwidth = 1.14 GB/s
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.16 -> 0.18
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.16 -> 0.24

[Simulation] Evolve until next trigger(s) :
   -> t = 0.18 (current = 0.16)
   -> iter = None (current = 27)
   -> walltime = 110.314474085 (current = 114.34824930200001)

Info: evolve_until (target_time = 0.18s, niter_max = -1, max_walltime = 110.31s)      [SPH][rank=0]
---------------- t = 0.16, dt = 0.0064401289666700555 ----------------
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     : 6.70 us    (2.9%)
   patch tree reduce : 2.40 us    (1.1%)
   gen split merge   : 1.30 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.7%)
   LB compute        : 204.58 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0527178660723463e-07,-5.671639935344841e-07,-3.291984339471335e-08)
    sum a = (-4.743384504624082e-18,4.20128341838133e-18,-1.2874900798265365e-19)
    sum e = 0.04538572174987648
    sum de = 0.0004660995581976747
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.33e-03 |
|     force | 1.26e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006325013182509723 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    | 2.2048e+05 | 100000 |      1 | 4.536e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.11646625825007 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 114.80s > 110.31s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 3):
   -> walltime = 114.802478926 >= 110.314474085
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000003.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (51.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.sham    [Shamrock Dump][rank=0]
              - took 5.07 ms, bandwidth = 2.52 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 114.802478926 -> 144.802478926

[Simulation] Evolve until next trigger(s) :
   -> t = 0.18 (current = 0.16644012896667007)
   -> iter = None (current = 28)
   -> walltime = 144.802478926 (current = 114.81005187000001)

Info: evolve_until (target_time = 0.18s, niter_max = -1, max_walltime = 144.80s)      [SPH][rank=0]
---------------- t = 0.16644012896667007, dt = 0.006325013182509723 ----------------
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     : 4.29 us    (2.0%)
   patch tree reduce : 2.11 us    (1.0%)
   gen split merge   : 936.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.7%)
   LB compute        : 195.15 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.230901096767436e-07,-5.571331538142939e-07,-3.1573073261860965e-08)
    sum a = (-1.22514845490862e-17,2.3852447794681098e-18,8.470329472543003e-20)
    sum e = 0.045388520345038985
    sum de = 0.00048263286346327986
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.83e-03 |
|     force | 1.26e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0068341887424744575 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    | 2.1793e+05 | 100000 |      1 | 4.589e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.62293557502789 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.35s (niter = 16) global walltime = 115.27s (max_walltime = 144.80s)  [SPH][rank=0]
---------------- t = 0.1727651421491798, dt = 0.0068341887424744575 ----------------
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     : 7.07 us    (2.5%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.6%)
   LB compute        : 256.50 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.845671613306353e-07,-6.00735524167005e-07,-3.328617596076755e-08)
    sum a = (0,-6.396792817664476e-18,3.7269449679189215e-20)
    sum e = 0.04539285776147296
    sum de = 0.0005000403392930682
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.60e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0065998935422633504 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    | 2.0731e+05 | 100000 |      1 | 4.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.00450337007916 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17959933089165425, dt = 0.00040066910834574143 ----------------
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     : 7.21 us    (3.5%)
   patch tree reduce : 2.39 us    (1.2%)
   gen split merge   : 1.17 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.96 us    (1.0%)
   LB compute        : 179.55 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.019430184518188e-08,-3.5046112637260226e-08,-1.897474253859036e-09)
    sum a = (1.214306433183765e-17,-1.2224379494774062e-17,1.7618285302889447e-19)
    sum e = 0.04538633058068378
    sum de = 0.0005019502481325861
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.59e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006594976863593348 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    | 2.1508e+05 | 100000 |      1 | 4.649e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1023081170344824 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 32                                                      [SPH][rank=0]
Info: time since start : 116.21809118600001 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 9):
   -> t = 0.18 >= 0.18
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.50 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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 374.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 354.48 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000009.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 370.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 332.51 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000009.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.032050335 s
Info: compute_slice took 597.69 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 579.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000009.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.015916218 s
Info: compute_slice took 580.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 567.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000009.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 566.88 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 617.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000009.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000009.json
sph::RenderFieldGetter compute custom field took :  0.0074994960000000005 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000009.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.18 -> 0.19999999999999998

[Simulation] Evolve until next trigger(s) :
   -> t = 0.19999999999999998 (current = 0.18)
   -> iter = None (current = 31)
   -> walltime = 144.802478926 (current = 126.189996116)

Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = 144.80s)      [SPH][rank=0]
---------------- t = 0.18, dt = 0.006594976863593348 ----------------
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     : 7.87 us    (3.5%)
   patch tree reduce : 2.09 us    (0.9%)
   gen split merge   : 1.32 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.8%)
   LB compute        : 199.56 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.98742164438232e-07,-5.766372868809131e-07,-3.11793674962779e-08)
    sum a = (-7.101524229780054e-18,-1.1817803680091998e-17,2.0328790734103208e-20)
    sum e = 0.045395967022481346
    sum de = 0.0005178268618079442
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.39e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006392042320331887 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.8134e+05 | 100000 |      1 | 5.514e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.05420802752505 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.42s (niter = 8) global walltime = 126.74s (max_walltime = 144.80s)  [SPH][rank=0]
---------------- t = 0.18659497686359333, dt = 0.006392042320331887 ----------------
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     : 6.94 us    (3.2%)
   patch tree reduce : 2.27 us    (1.0%)
   gen split merge   : 1.21 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.7%)
   LB compute        : 192.66 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (66.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.115996853017308e-07,-5.545719313363073e-07,-2.9364328512483596e-08)
    sum a = (1.0869126779167182e-17,5.936006894358137e-18,-2.202285662861181e-20)
    sum e = 0.04539895870268899
    sum de = 0.0005338049013657058
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.22e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006224617268831768 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    | 2.0964e+05 | 100000 |      1 | 4.770e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.240890107448244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19298701918392522, dt = 0.006224617268831768 ----------------
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     : 8.00 us    (3.2%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 949.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.83 us    (0.7%)
   LB compute        : 227.11 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.253500640766567e-07,-5.344728642374127e-07,-2.776745145583603e-08)
    sum a = (-1.0137290312739466e-17,1.4365678785432934e-18,2.879912020664621e-20)
    sum e = 0.04540203420728143
    sum de = 0.0005490979010898678
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.62e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00662356871167084 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    | 2.0971e+05 | 100000 |      1 | 4.768e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.99362848386931 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.199211636452757, dt = 0.0007883635472429873 ----------------
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     : 7.43 us    (3.4%)
   patch tree reduce : 2.23 us    (1.0%)
   gen split merge   : 1.39 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.8%)
   LB compute        : 192.15 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.993855507626701e-08,-6.681854367708931e-08,-3.4123939067189127e-09)
    sum a = (1.5612511283791264e-17,-2.4665599424045226e-18,-2.490276864927643e-19)
    sum e = 0.04539693396454905
    sum de = 0.0005517979659394639
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.60e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0065975374002128105 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.2212e+05 | 100000 |      1 | 4.502e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.303966442884332 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 128.147752469 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 10):
   -> t = 0.19999999999999998 >= 0.19999999999999998
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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 337.16 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 352.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000010.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 415.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 370.51 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000010.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.038386486000000004 s
Info: compute_slice took 635.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 577.59 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000010.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016298392000000002 s
Info: compute_slice took 578.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 577.14 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000010.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 591.49 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 603.17 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000010.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000010.json
sph::RenderFieldGetter compute custom field took :  0.007237548000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000010.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.19999999999999998 -> 0.21999999999999997

[Simulation] Evolve until next trigger(s) :
   -> t = 0.21999999999999997 (current = 0.19999999999999998)
   -> iter = None (current = 35)
   -> walltime = 144.802478926 (current = 138.194558553)

Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = 144.80s)      [SPH][rank=0]
---------------- t = 0.19999999999999998, dt = 0.0065975374002128105 ----------------
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     : 8.08 us    (3.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.54 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.7%)
   LB compute        : 206.16 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (74.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.889231649476657e-07,-5.581430272445318e-07,-2.8445116359120144e-08)
    sum a = (-7.101524229780054e-18,1.2197274440461925e-18,3.7947076036992655e-19)
    sum e = 0.0454068637930248
    sum de = 0.0005666994150549308
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.33e-03 |
|     force | 1.27e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006334698637351782 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.1742e+05 | 100000 |      1 | 4.599e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.64049995575244 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.38s (niter = 3) global walltime = 138.66s (max_walltime = 144.80s)  [SPH][rank=0]
---------------- t = 0.2065975374002128, dt = 0.006334698637351782 ----------------
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     : 6.95 us    (2.3%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.91 us    (0.6%)
   LB compute        : 278.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.948319358848785e-07,-5.265825865319421e-07,-2.6400698673641983e-08)
    sum a = (-1.1302807648161384e-17,1.2414114874959026e-17,-9.825582188149884e-20)
    sum e = 0.04541002007981631
    sum de = 0.0005816187406820391
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.20e-03 |
|     force | 1.28e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006201601245053265 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    | 2.1644e+05 | 100000 |      1 | 4.620e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.35802618011056 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2129322360375646, dt = 0.006201601245053265 ----------------
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     : 7.76 us    (3.1%)
   patch tree reduce : 2.48 us    (1.0%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.00 us    (0.8%)
   LB compute        : 225.23 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 5.04 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.101769426255729e-07,-5.051128333410484e-07,-2.497176202647235e-08)
    sum a = (1.100465205072787e-17,1.6263032587282567e-18,0)
    sum e = 0.04541344074999928
    sum de = 0.0005958633517820895
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.02e-03 |
|     force | 1.28e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006016117218853949 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    | 2.1795e+05 | 100000 |      1 | 4.588e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.65820390503609 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21913383728261784, dt = 0.0008661627173821296 ----------------
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     : 7.29 us    (3.7%)
   patch tree reduce : 2.31 us    (1.2%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.9%)
   LB compute        : 174.75 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.904665464901142e-08,-6.890178093724321e-08,-3.36594503730446e-09)
    sum a = (-1.4338573731120796e-17,-1.3579632210380943e-17,2.286988957586611e-19)
    sum e = 0.04540845727787371
    sum de = 0.000598669628821749
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.00e-03 |
|     force | 1.28e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005998871176574128 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    | 2.2488e+05 | 100000 |      1 | 4.447e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.012267995576594 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 2) global walltime = 140.02s (max_walltime = 144.80s)  [SPH][rank=0]
Info: iteration since start : 40                                                      [SPH][rank=0]
Info: time since start : 140.022338335 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 11):
   -> t = 0.21999999999999997 >= 0.21999999999999997
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000011.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.50 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000011.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 333.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 331.41 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000011.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 367.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 331.75 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000011.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.032359462 s
Info: compute_slice took 595.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 578.83 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000011.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012602897 s
Info: compute_slice took 578.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 572.19 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000011.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 568.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 572.52 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000011.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000011.json
sph::RenderFieldGetter compute custom field took :  0.006903061 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000011.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.21999999999999997 -> 0.23999999999999996

[Simulation] Evolve until next trigger(s) :
   -> t = 0.23999999999999996 (current = 0.21999999999999997)
   -> iter = None (current = 39)
   -> walltime = 144.802478926 (current = 149.877588429)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 144.80s)      [SPH][rank=0]
---------------- t = 0.21999999999999997, dt = 0.005998871176574128 ----------------
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     : 8.46 us    (3.4%)
   patch tree reduce : 2.46 us    (1.0%)
   gen split merge   : 1.27 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.82 us    (0.7%)
   LB compute        : 222.03 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 5.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (74.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.204234114062518e-07,-4.7548503402853703e-07,-2.3192857606561854e-08)
    sum a = (1.6317242695906842e-17,-2.6020852139652106e-18,-2.0328790734103208e-20)
    sum e = 0.04541723706536406
    sum de = 0.0006112844469609764
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.75e-03 |
|     force | 1.28e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0067467027304132145 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    | 2.2077e+05 | 100000 |      1 | 4.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.67742370926126 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 150.33s > 144.80s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 4):
   -> walltime = 150.331298968 >= 144.802478926
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000004.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (57.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.sham    [Shamrock Dump][rank=0]
              - took 6.53 ms, bandwidth = 1.96 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 150.331298968 -> 180.331298968

[Simulation] Evolve until next trigger(s) :
   -> t = 0.23999999999999996 (current = 0.2259988711765741)
   -> iter = None (current = 40)
   -> walltime = 180.331298968 (current = 150.34162533100002)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 180.33s)      [SPH][rank=0]
---------------- t = 0.2259988711765741, dt = 0.0067467027304132145 ----------------
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.37 us    (2.4%)
   patch tree reduce : 2.23 us    (1.0%)
   gen split merge   : 774.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.8%)
   LB compute        : 198.59 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.93 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.266100990499676e-07,-5.2044472407573e-07,-2.5148184289790578e-08)
    sum a = (3.63207727782644e-18,3.279711571768651e-18,4.573977915173222e-20)
    sum e = 0.045422818294726705
    sum de = 0.0006255964873624453
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.72e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006715297906176022 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.9625e+05 | 100000 |      1 | 5.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.66646509301362 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.14s (niter = 14) global walltime = 150.85s (max_walltime = 180.33s)  [SPH][rank=0]
---------------- t = 0.23274557390698733, dt = 0.006715297906176022 ----------------
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     : 7.31 us    (3.5%)
   patch tree reduce : 2.17 us    (1.0%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.85 us    (0.9%)
   LB compute        : 182.82 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (66.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.554095647067532e-07,-4.999991974295726e-07,-2.3965461276862534e-08)
    sum a = (8.700722434196173e-18,1.111307226797642e-18,1.2620790914089075e-19)
    sum e = 0.04542702220321243
    sum de = 0.0006396283870548469
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.51e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006506690468581654 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    | 2.0016e+05 | 100000 |      1 | 4.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.3885175027322 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.23946087181316336, dt = 0.0005391281868366016 ----------------
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     : 7.77 us    (3.2%)
   patch tree reduce : 2.37 us    (1.0%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.6%)
   LB compute        : 217.43 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.319847320244464e-08,-3.853082105930377e-08,-1.8374268371156228e-09)
    sum a = (-4.1470733097570545e-18,-8.131516293641283e-19,1.2705494208814505e-19)
    sum e = 0.045420795426366456
    sum de = 0.0006418271865994233
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.50e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006502151450847712 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    | 2.0493e+05 | 100000 |      1 | 4.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9774881314672412 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 151.840598854 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 12):
   -> t = 0.23999999999999996 >= 0.23999999999999996
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.52 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000012.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000012.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 338.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 340.22 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000012.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 376.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 341.35 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000012.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.034700435 s
Info: compute_slice took 611.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 583.35 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000012.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016384533 s
Info: compute_slice took 592.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 609.11 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000012.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 644.61 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 600.21 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000012.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000012.json
sph::RenderFieldGetter compute custom field took :  0.0071984810000000005 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000012.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.23999999999999996 -> 0.25999999999999995

[Simulation] Evolve until next trigger(s) :
   -> t = 0.24 (current = 0.23999999999999996)
   -> iter = None (current = 43)
   -> walltime = 180.331298968 (current = 162.003035449)

Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = 180.33s)      [SPH][rank=0]
---------------- t = 0.23999999999999996, dt = 2.7755575615628914e-17 ----------------
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     : 7.70 us    (3.6%)
   patch tree reduce : 1.90 us    (0.9%)
   gen split merge   : 1.34 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.8%)
   LB compute        : 187.08 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (17.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.094366567852556e-18,-6.7898161051904715e-18,1.2705494208814505e-21)
    sum a = (-1.428436362249652e-17,-5.502326025363935e-18,1.4484263398048536e-19)
    sum e = 0.04542075271016464
    sum de = 0.0006418323619756782
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.50e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006502229303603127 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.4038e+05 | 100000 |      1 | 4.160e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4019087847688807e-13 (tsim/hr)                        [sph::Model][rank=0]
Info: next walltime check in 4.17s (niter = 10) global walltime = 162.42s (max_walltime = 180.33s)  [SPH][rank=0]
Info: iteration since start : 45                                                      [SPH][rank=0]
Info: time since start : 162.419728894 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "vtk_dump" (counter = 3):
   -> t = 0.24 >= 0.24
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.vtk          [VTK Dump][rank=0]
              - took 5.28 ms, bandwidth = 1.06 GB/s
--------------------------------
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.24 -> 0.32

[Simulation] Evolve until next trigger(s) :
   -> t = 0.25999999999999995 (current = 0.24)
   -> iter = None (current = 44)
   -> walltime = 180.331298968 (current = 162.425560651)

Info: evolve_until (target_time = 0.26s, niter_max = -1, max_walltime = 180.33s)      [SPH][rank=0]
---------------- t = 0.24, dt = 0.006502229303603127 ----------------
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     : 6.57 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 879.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.97 us    (0.7%)
   LB compute        : 264.08 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (66.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.646696373169287e-07,-4.630576208065963e-07,-2.2075957405458255e-08)
    sum a = (-5.5294310796760726e-18,-1.271227047239254e-17,1.3467823861343375e-19)
    sum e = 0.04543118122592422
    sum de = 0.0006539149794351926
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.32e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006318187257652069 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    | 2.0448e+05 | 100000 |      1 | 4.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.86397019882873 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.92s (niter = 8) global walltime = 162.92s (max_walltime = 180.33s)  [SPH][rank=0]
---------------- t = 0.2465022293036031, dt = 0.006318187257652069 ----------------
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     : 6.67 us    (3.3%)
   patch tree reduce : 2.12 us    (1.1%)
   gen split merge   : 1.19 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.03 us    (1.0%)
   LB compute        : 176.20 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (64.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.715884541497099e-07,-4.295956534312002e-07,-2.0451725037637232e-08)
    sum a = (2.3852447794681098e-18,2.927345865710862e-18,1.2874900798265365e-19)
    sum e = 0.04543502098124524
    sum de = 0.000666236418452679
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.17e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006171461944404079 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    | 2.1607e+05 | 100000 |      1 | 4.628e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.14620958462664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2528204165612552, dt = 0.006171461944404079 ----------------
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     : 6.99 us    (2.7%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.7%)
   LB compute        : 230.66 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.803208157390589e-07,-3.985250192890016e-07,-1.9014782885802272e-08)
    sum a = (3.198396408832238e-18,-4.065758146820642e-18,1.4399560103323106e-20)
    sum e = 0.04543891343523858
    sum de = 0.0006777959311112051
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.05e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0060462311636046775 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.1878e+05 | 100000 |      1 | 4.571e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.608029600621826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2589918785056593, dt = 0.0010081214943406525 ----------------
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     : 7.66 us    (3.4%)
   patch tree reduce : 2.23 us    (1.0%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.8%)
   LB compute        : 201.94 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (61.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3162940682012937e-07,-6.14584911791166e-08,-2.950624108868983e-09)
    sum a = (-6.288372600415926e-18,5.55653613398821e-19,-2.1260526976082939e-19)
    sum e = 0.04543412788742126
    sum de = 0.000680601368864294
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.18e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0061808603131708 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    | 2.1813e+05 | 100000 |      1 | 4.585e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.916284706649201 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 49                                                      [SPH][rank=0]
Info: time since start : 164.295304963 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 13):
   -> t = 0.25999999999999995 >= 0.25999999999999995
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000013.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000013.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 336.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 339.47 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000013.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 376.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 340.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000013.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.029815302000000002 s
Info: compute_slice took 604.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 589.96 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000013.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012960374 s
Info: compute_slice took 598.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 585.31 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000013.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 629.08 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 582.10 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000013.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000013.json
sph::RenderFieldGetter compute custom field took :  0.0071510820000000004 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000013.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.25999999999999995 -> 0.27999999999999997

[Simulation] Evolve until next trigger(s) :
   -> t = 0.27999999999999997 (current = 0.25999999999999995)
   -> iter = None (current = 48)
   -> walltime = 180.331298968 (current = 174.31396039100002)

Info: evolve_until (target_time = 0.28s, niter_max = -1, max_walltime = 180.33s)      [SPH][rank=0]
---------------- t = 0.25999999999999995, dt = 0.0061808603131708 ----------------
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     : 7.86 us    (3.4%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1.52 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.97 us    (0.9%)
   LB compute        : 206.54 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (66.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.111380635651102e-07,-3.7300225366281015e-07,-1.7933673139648984e-08)
    sum a = (-9.378348791999613e-18,-7.779150587583494e-18,-9.232659125071874e-20)
    sum e = 0.045443867135246604
    sum de = 0.0006906091368867505
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.12e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006124619271513487 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.9657e+05 | 100000 |      1 | 5.087e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.738810559257374 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.02s (niter = 2) global walltime = 174.82s (max_walltime = 180.33s)  [SPH][rank=0]
---------------- t = 0.26618086031317073, dt = 0.006124619271513487 ----------------
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     : 6.67 us    (3.4%)
   patch tree reduce : 2.47 us    (1.3%)
   gen split merge   : 703.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.94 us    (1.0%)
   LB compute        : 170.55 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.283114770899085e-07,-3.455331383062592e-07,-1.681138200903317e-08)
    sum a = (-1.1926223897340549e-18,1.780802068307441e-17,-1.4568966692773966e-19)
    sum e = 0.045448041819656296
    sum de = 0.0007009626007351857
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.93e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005926180907813266 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    | 2.1111e+05 | 100000 |      1 | 4.737e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.54577593181047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2723054795846842, dt = 0.005926180907813266 ----------------
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     : 8.26 us    (3.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.22 us    (0.9%)
   LB compute        : 235.77 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.24266054369783e-07,-3.0969696991124153e-07,-1.5337079834327475e-08)
    sum a = (2.5478751053409354e-18,6.35613523619627e-18,1.1858461261560205e-19)
    sum e = 0.04545188429507214
    sum de = 0.0007105331701116834
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.75e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00575177005709735 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    | 2.1319e+05 | 100000 |      1 | 4.691e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.48246915487555 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.97s (niter = 2) global walltime = 175.77s (max_walltime = 180.33s)  [SPH][rank=0]
---------------- t = 0.2782316604924975, dt = 0.0017683395075024921 ----------------
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     : 6.74 us    (3.2%)
   patch tree reduce : 1.90 us    (0.9%)
   gen split merge   : 1.34 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.01 us    (0.9%)
   LB compute        : 188.71 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (69.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.52294625423915e-07,-8.486378560765132e-08,-4.305459509572171e-09)
    sum a = (-1.8431436932253575e-18,6.071532165918825e-18,0)
    sum e = 0.045448393575972745
    sum de = 0.0007141881082489118
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.71e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005708767563923094 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    | 2.1175e+05 | 100000 |      1 | 4.723e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.480142571065416 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 176.240068739 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 14):
   -> t = 0.27999999999999997 >= 0.27999999999999997
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000014.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000014.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 336.16 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 342.74 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 374.18 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 336.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000014.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.029801119 s
Info: compute_slice took 605.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 576.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000014.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012673241 s
Info: compute_slice took 635.40 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 610.90 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000014.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 623.23 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 619.73 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000014.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000014.json
sph::RenderFieldGetter compute custom field took :  0.007226967000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000014.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.27999999999999997 -> 0.3

[Simulation] Evolve until next trigger(s) :
   -> t = 0.3 (current = 0.27999999999999997)
   -> iter = None (current = 52)
   -> walltime = 180.331298968 (current = 186.306547908)

Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = 180.33s)      [SPH][rank=0]
---------------- t = 0.27999999999999997, dt = 0.005708767563923094 ----------------
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     : 8.18 us    (3.3%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 226.10 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (76.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.204311326207562e-07,-2.6643550357668315e-07,-1.3636807205872171e-08)
    sum a = (-8.185726402265558e-18,4.472333961502706e-19,8.300922883092143e-20)
    sum e = 0.04545688185562593
    sum de = 0.0007219166579911063
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 6.05e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.006049615754453017 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.1466e+05 | 100000 |      1 | 4.659e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.11526742252633 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 186.77s > 180.33s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 5):
   -> walltime = 186.773167381 >= 180.331298968
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000005.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (54.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.sham    [Shamrock Dump][rank=0]
              - took 7.48 ms, bandwidth = 1.71 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 186.773167381 -> 216.773167381

[Simulation] Evolve until next trigger(s) :
   -> t = 0.3 (current = 0.28570876756392305)
   -> iter = None (current = 53)
   -> walltime = 216.773167381 (current = 186.78451106300002)

Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = 216.77s)      [SPH][rank=0]
---------------- t = 0.28570876756392305, dt = 0.006049615754453017 ----------------
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.38 us    (2.7%)
   patch tree reduce : 1.94 us    (1.0%)
   gen split merge   : 764.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.8%)
   LB compute        : 179.28 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (62.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.891572644907208e-07,-2.557113230313915e-07,-1.3547789002187448e-08)
    sum a = (1.1384122811097797e-18,-5.434563389583591e-18,3.3881317890172014e-21)
    sum e = 0.0454618864903139
    sum de = 0.0007302335724187327
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.95e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005952018778808996 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.1303e+05 | 100000 |      1 | 4.694e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.395260267698184 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.05s (niter = 15) global walltime = 187.25s (max_walltime = 216.77s)  [SPH][rank=0]
---------------- t = 0.29175838331837606, dt = 0.005952018778808996 ----------------
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     : 7.22 us    (2.9%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.7%)
   LB compute        : 227.45 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.943551155984417e-07,-2.224414879841566e-07,-1.2380202592962927e-08)
    sum a = (-1.1275702593849246e-17,9.147955830346444e-18,6.183340514956392e-20)
    sum e = 0.04546609681391705
    sum de = 0.000737992250298525
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.92e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005915845313608345 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    | 2.0259e+05 | 100000 |      1 | 4.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.409871881481735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2977104020971851, dt = 0.0022895979028149105 ----------------
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     : 8.21 us    (3.1%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.90 us    (0.7%)
   LB compute        : 240.74 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 5.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (73.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5099377125836714e-07,-7.402344626080163e-08,-4.4006279567764e-09)
    sum a = (1.7889335846010823e-18,7.684282897491013e-18,-3.2526065174565133e-19)
    sum e = 0.04546327861967432
    sum de = 0.0007417483285471095
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.83e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005825916426473009 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    | 2.1441e+05 | 100000 |      1 | 4.664e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.67283021764983 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 57                                                      [SPH][rank=0]
Info: time since start : 188.215685737 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 15):
   -> t = 0.3 >= 0.3
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.44 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000015.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.49 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000015.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 372.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 344.38 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000015.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 373.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 340.74 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000015.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.030922905 s
Info: compute_slice took 598.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 574.38 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000015.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012558378 s
Info: compute_slice took 607.47 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 586.48 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000015.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 592.57 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 579.35 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000015.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000015.json
sph::RenderFieldGetter compute custom field took :  0.0072671310000000005 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000015.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.3 -> 0.32

[Simulation] Evolve until next trigger(s) :
   -> t = 0.32 (current = 0.3)
   -> iter = None (current = 56)
   -> walltime = 216.773167381 (current = 198.223192363)

Info: evolve_until (target_time = 0.32s, niter_max = -1, max_walltime = 216.77s)      [SPH][rank=0]
---------------- t = 0.3, dt = 0.005825916426473009 ----------------
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     : 7.60 us    (3.6%)
   patch tree reduce : 1.88 us    (0.9%)
   gen split merge   : 1.27 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.7%)
   LB compute        : 190.76 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.996044241947826e-07,-1.7672163722649658e-07,-1.0841844304654592e-08)
    sum a = (-1.5720931501039814e-17,4.086086937554745e-18,-2.752857078576476e-20)
    sum e = 0.04547192503924058
    sum de = 0.0007476741687574292
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.86e-03 |
|     force | 1.31e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005857449956209197 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    | 2.1966e+05 | 100000 |      1 | 4.553e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.0694136762875 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 4.10s (niter = 9) global walltime = 198.68s (max_walltime = 216.77s)  [SPH][rank=0]
---------------- t = 0.305825916426473, dt = 0.005857449956209197 ----------------
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     : 7.87 us    (3.7%)
   patch tree reduce : 2.30 us    (1.1%)
   gen split merge   : 899.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.00 us    (0.9%)
   LB compute        : 189.99 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (68.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.202446116120239e-07,-1.4710095272328302e-07,-9.98703881460101e-09)
    sum a = (9.107298248878237e-18,3.767602549387128e-18,7.835054762102278e-20)
    sum e = 0.045476393377852045
    sum de = 0.0007538360110177355
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.63e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005626933881808579 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    | 2.0671e+05 | 100000 |      1 | 4.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.58909593037174 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3116833663826822, dt = 0.005626933881808579 ----------------
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     : 7.96 us    (4.0%)
   patch tree reduce : 2.17 us    (1.1%)
   gen split merge   : 1.17 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.8%)
   LB compute        : 177.03 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (63.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.980223518221251e-07,-1.1069530270370879e-07,-8.707162515237812e-09)
    sum a = (4.391018798566293e-18,1.2163393122571753e-18,-1.0842021724855044e-19)
    sum e = 0.045480266751731
    sum de = 0.0007592712280401615
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.41e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005413711078985287 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    | 2.1657e+05 | 100000 |      1 | 4.617e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.87062127439632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.31731030026449075, dt = 0.0026896997355092545 ----------------
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     : 7.39 us    (2.8%)
   patch tree reduce : 2.64 us    (1.0%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.6%)
   LB compute        : 242.65 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 us    (65.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3508946480257576e-07,-3.839360703923681e-08,-3.753054664549894e-09)
    sum a = (-5.854691731421724e-18,4.6688456052657035e-18,-5.336307567702092e-20)
    sum e = 0.04547863494921622
    sum de = 0.0007624293892231716
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.32e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0053229476135798 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.1320e+05 | 100000 |      1 | 4.690e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.643787596801534 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 61                                                      [SPH][rank=0]
Info: time since start : 200.09556491900003 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 16):
   -> t = 0.32 >= 0.32
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.51 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000016.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000016.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 334.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 339.29 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000016.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 374.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 340.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000016.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.029974924000000003 s
Info: compute_slice took 615.96 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 610.68 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000016.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.014892798 s
Info: compute_slice took 644.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 593.46 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000016.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 580.73 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 584.18 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000016.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000016.json
sph::RenderFieldGetter compute custom field took :  0.0073084940000000004 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000016.npy
--------------------------------
[Simulation] Triggering callback "vtk_dump" (counter = 4):
   -> t = 0.32 >= 0.32
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.vtk          [VTK Dump][rank=0]
              - took 5.21 ms, bandwidth = 1.08 GB/s
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.32 -> 0.34
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.32 -> 0.4

[Simulation] Evolve until next trigger(s) :
   -> t = 0.34 (current = 0.32)
   -> iter = None (current = 60)
   -> walltime = 216.773167381 (current = 210.21632034400002)

Info: evolve_until (target_time = 0.34s, niter_max = -1, max_walltime = 216.77s)      [SPH][rank=0]
---------------- t = 0.32, dt = 0.0053229476135798 ----------------
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     : 6.92 us    (3.0%)
   patch tree reduce : 2.07 us    (0.9%)
   gen split merge   : 1.58 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 2.14 us    (0.9%)
   LB compute        : 208.24 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.661374231298433e-07,-6.195052114870678e-08,-7.039390739286174e-09)
    sum a = (6.5052130349130266e-18,1.0977546996415732e-18,1.249373597200093e-19)
    sum e = 0.045485895739515135
    sum de = 0.0007660455345424594
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.71e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005714626421371433 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.1422e+05 | 100000 |      1 | 4.668e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.05105349230894 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.40s (niter = 3) global walltime = 210.68s (max_walltime = 216.77s)  [SPH][rank=0]
---------------- t = 0.3253229476135798, dt = 0.005714626421371433 ----------------
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     : 6.89 us    (2.9%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 1.36 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.81 us    (0.8%)
   LB compute        : 217.05 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.397720125330289e-07,-3.6121650146964384e-08,-6.731181707829651e-09)
    sum a = (1.1167282376600696e-17,8.140092502232233e-18,1.0630263488041469e-19)
    sum e = 0.04549095220115949
    sum de = 0.0007698093230379602
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.53e-03 |
|     force | 1.30e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005525601463519706 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    | 2.1411e+05 | 100000 |      1 | 4.670e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.04859280562067 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.33103757403495127, dt = 0.005525601463519706 ----------------
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     : 8.24 us    (3.5%)
   patch tree reduce : 2.42 us    (1.0%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.7%)
   LB compute        : 211.34 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.176119877247975e-07,-2.619732287952861e-09,-5.6485919577865005e-09)
    sum a = (4.87890977618477e-18,9.347855605898459e-18,-1.5331296345302836e-19)
    sum e = 0.04549490708217755
    sum de = 0.000773033857407668
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.33e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005326782355470772 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    | 2.1772e+05 | 100000 |      1 | 4.593e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.30988700130456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.336563175498471, dt = 0.0034368245015290455 ----------------
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     : 8.36 us    (3.5%)
   patch tree reduce : 2.29 us    (1.0%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.30 us    (1.0%)
   LB compute        : 213.37 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 5.08 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (55.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.752425006129677e-07,1.822167061950818e-08,-2.995043312144484e-09)
    sum a = (6.5052130349130266e-18,1.0787811616230769e-17,-1.9651164376299768e-19)
    sum e = 0.04549472965754183
    sum de = 0.0007753463027816863
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.27e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0052661385976623225 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.1927e+05 | 100000 |      1 | 4.561e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.128856345954905 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 2) global walltime = 212.07s (max_walltime = 216.77s)  [SPH][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 212.06789705900002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 17):
   -> t = 0.34 >= 0.34
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000017.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.53 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000017.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 337.28 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 338.80 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000017.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 378.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 336.59 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000017.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033925672000000004 s
Info: compute_slice took 609.10 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 635.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000017.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016490316 s
Info: compute_slice took 593.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 588.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000017.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 637.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 605.34 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000017.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000017.json
sph::RenderFieldGetter compute custom field took :  0.007470947 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000017.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.34 -> 0.36000000000000004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.36000000000000004 (current = 0.34)
   -> iter = None (current = 64)
   -> walltime = 216.773167381 (current = 222.21677925100002)

Info: evolve_until (target_time = 0.36s, niter_max = -1, max_walltime = 216.77s)      [SPH][rank=0]
---------------- t = 0.34, dt = 0.0052661385976623225 ----------------
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     : 8.34 us    (3.7%)
   patch tree reduce : 2.19 us    (1.0%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.7%)
   LB compute        : 200.22 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (63.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.850427519246904e-07,4.712573635762675e-08,-4.094638193425395e-09)
    sum a = (1.7889335846010823e-18,-1.463672932855431e-18,-2.5135702709771363e-19)
    sum e = 0.04550124833839557
    sum de = 0.0007768844497571002
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.41e-03 |
|     force | 1.29e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005409344488316932 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.1117e+05 | 100000 |      1 | 4.736e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.033798315761175 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 222.69s > 216.77s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 6):
   -> walltime = 222.691109261 >= 216.773167381
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000006.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.07 us    (58.8%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.sham    [Shamrock Dump][rank=0]
              - took 5.79 ms, bandwidth = 2.21 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 222.691109261 -> 252.691109261

[Simulation] Evolve until next trigger(s) :
   -> t = 0.36000000000000004 (current = 0.34526613859766236)
   -> iter = None (current = 65)
   -> walltime = 252.691109261 (current = 222.702307125)

Info: evolve_until (target_time = 0.36s, niter_max = -1, max_walltime = 252.69s)      [SPH][rank=0]
---------------- t = 0.34526613859766236, dt = 0.005409344488316932 ----------------
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.06 us    (2.2%)
   patch tree reduce : 2.15 us    (0.9%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.04 us    (0.9%)
   LB compute        : 206.72 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (68.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.137344109354161e-07,7.902765952157501e-08,-3.426784004180113e-09)
    sum a = (1.22514845490862e-17,-7.165898733771381e-18,-1.5701873259726593e-19)
    sum e = 0.04550570088286258
    sum de = 0.0007651851845857199
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.05511277716800899
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.269866076322593e-07,7.89396886101087e-08,-2.4588210580306457e-09)
    sum a = (5.637851296924623e-18,-3.3102047578698057e-18,-1.5797164466292701e-19)
    sum e = 0.0455011969645742
    sum de = 0.0007660597879846394
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.61e-03 |
|     force | 6.44e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002607512621684638 cfl multiplier : 0.499999999998818         [sph::Model][rank=0]
Info: Timestep 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.8121e+05 | 100000 |      1 | 5.518e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.288952525563886 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.18s (niter = 13) global walltime = 223.25s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.3506754830859793, dt = 0.002607512621684638 ----------------
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     : 7.88 us    (3.8%)
   patch tree reduce : 2.12 us    (1.0%)
   gen split merge   : 1.30 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.09 us    (1.0%)
   LB compute        : 183.59 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (66.4%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.9999999989472883e-07 r=(4.7070509614920936e-08,-1.5206923294868027e-07,7.931352815997422e-10) v=(1.3175221381213486e-06,5.9374843974643e-07,-6.923269169505174e-09) l=(3.2032950833680382e-09,6.1332808023835776e-09,1.1460927641505816e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.481221299477495e-07,3.736863501246207e-08,-1.1734420616903578e-09)
    sum a = (-2.4936649967166602e-18,-8.131516293641283e-20,1.6813604002997862e-19)
    sum e = 0.04549895400105481
    sum de = 0.000766287775548922
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.42e-03 |
|     force | 8.58e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003418037198133987 cfl multiplier : 0.6666666666658787        [sph::Model][rank=0]
Info: Timestep 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.1195e+05 | 99998 |      1 | 4.718e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.896141158105248 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3532829957076639, dt = 0.003418037198133987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99998.0 min = 99998.0 factor = 1
 - strategy "round robin" : max = 94998.1 min = 94998.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.67 us    (3.2%)
   patch tree reduce : 2.64 us    (1.1%)
   gen split merge   : 1.40 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.84 us    (0.8%)
   LB compute        : 211.92 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.869684001112648e-07,5.968565267018653e-08,-1.3110307705584525e-09)
    sum a = (2.927345865710862e-18,2.825701912040346e-18,-2.428866976251706e-19)
    sum e = 0.04550231675667138
    sum de = 0.0007666791283355686
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.21e-03 |
|     force | 1.00e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0042128226539760675 cfl multiplier : 0.7777777777772524       [sph::Model][rank=0]
Info: Timestep 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.1369e+05 | 99998 |      1 | 4.680e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.29534978672947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3567010329057979, dt = 0.003298967094202132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99998.0 min = 99998.0 factor = 1
 - strategy "round robin" : max = 94998.1 min = 94998.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (2.7%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 45.68 us   (16.2%)
   LB compute        : 212.45 us  (75.1%)
   LB move op cnt    : 0
   LB apply          : 5.08 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (76.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.67772659838593e-07,7.009669400416025e-08,-9.585039478053033e-10)
    sum a = (-5.421010862427522e-20,1.2488653774317404e-17,-2.8005026818595305e-20)
    sum e = 0.04550472715749073
    sum de = 0.0007560836195428488
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.03375935468142233
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.580870887346244e-07,6.72841195264537e-08,-6.158477698255082e-10)
    sum a = (1.8431436932253575e-18,3.0222135558033436e-18,-2.922263668027336e-20)
    sum e = 0.04550304409282834
    sum de = 0.0007563766093985379
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.41e-03 |
|     force | 5.47e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0024134910793578938 cfl multiplier : 0.4259259259257508       [sph::Model][rank=0]
Info: Timestep 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.8197e+05 | 99998 |      1 | 5.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.611473076233437 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 70                                                      [SPH][rank=0]
Info: time since start : 224.745949977 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 18):
   -> t = 0.36000000000000004 >= 0.36000000000000004
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.55 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000018.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000018.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 340.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 344.28 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000018.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 376.62 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 347.34 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.034900249 s
Info: compute_slice took 624.84 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 592.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016398406 s
Info: compute_slice took 605.32 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 591.41 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000018.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 617.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 589.02 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000018.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.53 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000018.json
sph::RenderFieldGetter compute custom field took :  0.007719444000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000018.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.36000000000000004 -> 0.38000000000000006

[Simulation] Evolve until next trigger(s) :
   -> t = 0.38000000000000006 (current = 0.36000000000000004)
   -> iter = None (current = 69)
   -> walltime = 252.691109261 (current = 235.000223293)

Info: evolve_until (target_time = 0.38s, niter_max = -1, max_walltime = 252.69s)      [SPH][rank=0]
---------------- t = 0.36000000000000004, dt = 0.0024134910793578938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99998.0 min = 99998.0 factor = 1
 - strategy "round robin" : max = 94998.1 min = 94998.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.73 us    (3.4%)
   patch tree reduce : 2.53 us    (1.1%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.7%)
   LB compute        : 202.23 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (72.6%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.9999999989472883e-07 r=(-8.23597702290121e-08,-1.1666334449452928e-07,3.6754583121443253e-10) v=(1.1368988578343593e-06,-6.39854151782898e-07,1.5671263347863894e-08) l=(-1.4506349201679483e-08,2.081925985208525e-08,1.1663403696274095e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.084476803410607e-07,4.837672141904412e-08,-5.207425550398311e-10)
    sum a = (0,5.522654816098038e-18,-1.180552170235681e-19)
    sum e = 0.045500345009833236
    sum de = 0.0007562562092343685
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.44e-03 |
|     force | 7.92e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0034396927605132963 cfl multiplier : 0.6172839506171672       [sph::Model][rank=0]
Info: Timestep 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.1667e+05 | 99996 |      1 | 4.615e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.825968855069267 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.16s (niter = 9) global walltime = 235.46s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.36241349107935794, dt = 0.0034396927605132963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99996.0 min = 99996.0 factor = 1
 - strategy "round robin" : max = 94996.2 min = 94996.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99996
    max = 99996
    avg = 99996
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (3.5%)
   patch tree reduce : 2.91 us    (1.4%)
   gen split merge   : 1.24 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.05 us    (1.0%)
   LB compute        : 188.02 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 5.14 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (62.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.826476613868511e-07,7.913073508185558e-08,-4.103945519569911e-10)
    sum a = (1.1384122811097797e-18,-4.038653092508504e-18,-1.2035808784891574e-19)
    sum e = 0.04550386333246003
    sum de = 0.0007560741459658686
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.04e-03 |
|     force | 9.54e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0040373347377193215 cfl multiplier : 0.7448559670781115       [sph::Model][rank=0]
Info: Timestep 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.1462e+05 | 99996 |      1 | 4.659e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.576957512326764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.36585318383987125, dt = 0.0040373347377193215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99996.0 min = 99996.0 factor = 1
 - strategy "round robin" : max = 94996.2 min = 94996.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99996
    max = 99996
    avg = 99996
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.10 us    (3.3%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.7%)
   LB compute        : 223.27 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.847915009534176e-07,1.079719559322941e-07,-9.4187952294993e-11)
    sum a = (9.215718466126788e-19,6.098637220230962e-20,1.2676377451252639e-19)
    sum e = 0.04550760331390848
    sum de = 0.0007482424153411348
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.041202569679297474
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.664634930448783e-07,1.0952468302182405e-07,3.7358512987241584e-10)
    sum a = (-6.776263578034403e-18,-6.532318089225164e-18,1.2708141186774675e-19)
    sum e = 0.04550509161263906
    sum de = 0.0007486896340472485
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.18e-03 |
|     force | 5.31e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0021832317551876016 cfl multiplier : 0.4149519890260372       [sph::Model][rank=0]
Info: Timestep 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.8413e+05 | 99996 |      1 | 5.431e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.763741991123332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3698905185775906, dt = 0.0021832317551876016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99996.0 min = 99996.0 factor = 1
 - strategy "round robin" : max = 94996.2 min = 94996.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99996
    max = 99996
    avg = 99996
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.88 us    (3.8%)
   patch tree reduce : 2.39 us    (1.1%)
   gen split merge   : 1.12 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.23 us    (1.1%)
   LB compute        : 183.73 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.6%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.9999999989472883e-07 r=(-1.2089946212208872e-07,-1.0421788826327e-07,8.408613714668808e-11) v=(1.0205736403294383e-06,-1.0423073570993608e-06,3.5609392558417803e-09) l=(-1.0661819911117255e-09,2.4115814966598605e-09,1.1646919694169046e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6030919765847407e-07,5.760191315019815e-08,2.67282833598504e-10)
    sum a = (9.215718466126788e-19,7.067642911889882e-18,2.236166980751353e-19)
    sum e = 0.04550207903549932
    sum de = 0.000742692471114176
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.02209241489852461
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5666217009563267e-07,5.872422714626297e-08,3.9990997784153344e-10)
    sum a = (2.2768245622195593e-18,1.2658060363768264e-17,2.2832831884423734e-19)
    sum e = 0.04550133718019741
    sum de = 0.0007428706035904028
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.58e-03 |
|     force | 3.90e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0015798699307225503 cfl multiplier : 0.3049839963420124       [sph::Model][rank=0]
Info: Timestep 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.7773e+05 | 99994 |      1 | 5.626e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.969953318056259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3720737503327782, dt = 0.0015798699307225503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99994.0 min = 99994.0 factor = 1
 - strategy "round robin" : max = 94994.3 min = 94994.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99994
    max = 99994
    avg = 99994
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (3.0%)
   patch tree reduce : 2.66 us    (1.0%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.95 us    (0.8%)
   LB compute        : 230.13 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (71.9%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-4.628068574772851e-08,-6.513952986692398e-08,7.622626881010464e-10) v=(6.450039677345252e-07,-3.5680949879446106e-07,2.6754269638902896e-08) l=(-1.4710693634679944e-08,1.729729189316638e-08,5.849905545881269e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.581876504542403e-07,4.198541636736943e-08,2.909105129390953e-10)
    sum a = (1.3552527156068805e-18,-6.4713317170228546e-18,9.476181097407485e-21)
    sum e = 0.045500141056576494
    sum de = 0.0007425741685600008
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.75e-03 |
|     force | 6.86e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002749420708793319 cfl multiplier : 0.5366559975613416        [sph::Model][rank=0]
Info: Timestep 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.1807e+05 | 99993 |      1 | 4.585e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.40386759265348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.37365362026350074, dt = 0.002749420708793319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99993.0 min = 99993.0 factor = 1
 - strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99993
    max = 99993
    avg = 99993
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.40 us    (3.4%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.7%)
   LB compute        : 219.08 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (74.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.49331682375408e-07,7.842424435210675e-08,6.30170959681984e-10)
    sum a = (-7.318364664277155e-18,-2.2497195079074217e-18,-1.5352472168984194e-19)
    sum e = 0.045502955657403574
    sum de = 0.0007419864700619761
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.90e-03 |
|     force | 8.82e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0038994365633049843 cfl multiplier : 0.6911039983742278       [sph::Model][rank=0]
Info: Timestep 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.1618e+05 | 99993 |      1 | 4.625e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.398776900505275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37640304097229405, dt = 0.003596959027706015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99993.0 min = 99993.0 factor = 1
 - strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99993
    max = 99993
    avg = 99993
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (3.6%)
   patch tree reduce : 2.37 us    (1.1%)
   gen split merge   : 923.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.88 us    (0.9%)
   LB compute        : 189.24 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (68.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.880682633505811e-07,1.1280395358587516e-07,1.1124294764767435e-09)
    sum a = (2.0599841277224584e-18,-3.2526065174565133e-19,-8.682087709356578e-20)
    sum e = 0.04550644915810015
    sum de = 0.0007409606399430948
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.34e-03 |
|     force | 1.01e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004342062023006104 cfl multiplier : 0.7940693322494852        [sph::Model][rank=0]
Info: Timestep 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.0005e+05 | 99993 |      1 | 4.998e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.906751429586432 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 77                                                      [SPH][rank=0]
Info: time since start : 238.45832542600002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 19):
   -> t = 0.38000000000000006 >= 0.38000000000000006
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000019.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000019.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 342.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 339.12 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000019.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 381.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 338.48 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000019.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.03885431 s
Info: compute_slice took 698.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 647.55 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000019.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.017075689 s
Info: compute_slice took 652.68 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 633.97 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000019.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 578.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 591.42 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000019.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.49 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000019.json
sph::RenderFieldGetter compute custom field took :  0.007904961 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000019.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.38000000000000006 -> 0.4000000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4 (current = 0.38000000000000006)
   -> iter = None (current = 76)
   -> walltime = 252.691109261 (current = 248.78097884500002)

Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = 252.69s)      [SPH][rank=0]
---------------- t = 0.38000000000000006, dt = 0.004342062023006104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99993.0 min = 99993.0 factor = 1
 - strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99993
    max = 99993
    avg = 99993
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.89 us    (3.0%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.99 us    (0.8%)
   LB compute        : 234.72 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.098440611056869e-07,1.5233919489314191e-07,1.7974076314378036e-09)
    sum a = (7.589415207398531e-18,-8.131516293641283e-19,7.39036246479377e-20)
    sum e = 0.045510575250636696
    sum de = 0.0007340124870653368
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04419413779699061
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.205798183868592e-07,1.6480915831818292e-07,2.4084101199377303e-09)
    sum a = (2.8731357570865868e-18,-6.7898161051904715e-18,7.750351467376848e-20)
    sum e = 0.045507669896157496
    sum de = 0.0007345254913021947
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.34e-03 |
|     force | 5.49e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0023398213542198004 cfl multiplier : 0.4313564440831617       [sph::Model][rank=0]
Info: Timestep 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.8010e+05 | 99993 |      1 | 5.552e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.154379977166577 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.56s (niter = 1) global walltime = 249.34s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.38434206202300614, dt = 0.0023398213542198004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99993.0 min = 99993.0 factor = 1
 - strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99993
    max = 99993
    avg = 99993
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.8%)
   patch tree reduce : 2.72 us    (1.1%)
   gen split merge   : 969.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.7%)
   LB compute        : 233.61 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 815.00 ns  (57.5%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(6.779455360986843e-08,-4.2294496943215174e-08,3.745016384867303e-10) v=(3.183562233698454e-07,6.485330082219143e-07,1.6078186714561236e-08) l=(-9.25265603614944e-09,-9.748972632003497e-09,5.739675622280922e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8889708465822317e-07,8.895656185251726e-08,1.2405358313271151e-09)
    sum a = (-2.0057740190981832e-18,-1.009663273127126e-17,3.5998900258307764e-20)
    sum e = 0.045507604218134955
    sum de = 0.0007334524950391893
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.33e-03 |
|     force | 7.90e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003328480705540778 cfl multiplier : 0.6209042960554411        [sph::Model][rank=0]
Info: Timestep 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.1651e+05 | 99992 |      1 | 4.618e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.23903072432851 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.51s (niter = 1) global walltime = 249.80s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.3866818833772259, dt = 0.003328480705540778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99992.0 min = 99992.0 factor = 1
 - strategy "round robin" : max = 94992.4 min = 94992.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99992
    max = 99992
    avg = 99992
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (3.1%)
   patch tree reduce : 2.65 us    (1.2%)
   gen split merge   : 1.24 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.7%)
   LB compute        : 196.94 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.520505293191635e-07,1.3459450946775345e-07,2.077576173851313e-09)
    sum a = (-1.1926223897340549e-18,-7.928228386300251e-18,1.2027867851011065e-19)
    sum e = 0.045510903072615974
    sum de = 0.0007266735187814285
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.033837797270503345
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.503102288341715e-07,1.3613366120868804e-07,2.615359896138947e-09)
    sum a = (1.8973538018496328e-18,-2.7511630126819675e-18,1.1837285437878847e-19)
    sum e = 0.04550919194458492
    sum de = 0.0007269570646706814
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.01e-03 |
|     force | 4.75e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0020091248469278726 cfl multiplier : 0.37363476535181367      [sph::Model][rank=0]
Info: Timestep 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.7961e+05 | 99992 |      1 | 5.567e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.523042088826706 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.53s (niter = 1) global walltime = 250.36s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.3900103640827667, dt = 0.0020091248469278726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99992.0 min = 99992.0 factor = 1
 - strategy "round robin" : max = 94992.4 min = 94992.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99992
    max = 99992
    avg = 99992
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (3.5%)
   patch tree reduce : 1.96 us    (1.0%)
   gen split merge   : 1.40 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.84 us    (0.9%)
   LB compute        : 179.79 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.91 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (63.0%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-7.974629451197452e-09,-7.954571555898813e-08,1.6258681252979196e-09) v=(7.357106238905955e-07,3.142300273269497e-10,-1.1395948499846558e-08) l=(9.032551636590998e-09,1.1049435390635804e-08,5.848976815369101e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.325122902422329e-07,8.17064929190797e-08,1.5538234873912365e-09)
    sum a = (1.734723475976807e-18,-8.294146619514109e-18,-3.5575383784680614e-20)
    sum e = 0.04550855177265816
    sum de = 0.0007258775111229338
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.10e-03 |
|     force | 7.41e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003102440012506591 cfl multiplier : 0.5824231769012091        [sph::Model][rank=0]
Info: Timestep 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.1546e+05 | 99991 |      1 | 4.641e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.585399675812072 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 250.82s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.39201948892969457, dt = 0.003102440012506591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99991.0 min = 99991.0 factor = 1
 - strategy "round robin" : max = 94991.4 min = 94991.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99991
    max = 99991
    avg = 99991
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (3.2%)
   patch tree reduce : 2.28 us    (1.1%)
   gen split merge   : 1.11 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.25 us    (1.1%)
   LB compute        : 180.05 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 5.12 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.125713668407061e-07,1.3345508095128933e-07,2.6210150737332475e-09)
    sum a = (-1.7889335846010823e-18,-2.3987973066241786e-18,6.140988867593677e-20)
    sum e = 0.045511659523352434
    sum de = 0.000724140068804273
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.03e-03 |
|     force | 9.17e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0040267784280992504 cfl multiplier : 0.7216154512674727       [sph::Model][rank=0]
Info: Timestep 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.1378e+05 | 99991 |      1 | 4.677e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.878545679347557 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 251.29s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.39512192894220116, dt = 0.0040267784280992504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99991.0 min = 99991.0 factor = 1
 - strategy "round robin" : max = 94991.4 min = 94991.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99991
    max = 99991
    avg = 99991
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (3.2%)
   patch tree reduce : 2.16 us    (1.1%)
   gen split merge   : 926.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 178.68 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (60.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.642938659658825e-07,1.8638645353399023e-07,3.7685263119629094e-09)
    sum a = (-1.951563910473908e-18,-5.312590645178972e-18,-2.1514636860259229e-19)
    sum e = 0.04551558794716346
    sum de = 0.0007215525581198612
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.53e-03 |
|     force | 1.03e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004526896905745581 cfl multiplier : 0.8144103008449818        [sph::Model][rank=0]
Info: Timestep 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.1558e+05 | 99991 |      1 | 4.638e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.254629050895964 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 251.75s (max_walltime = 252.69s)  [SPH][rank=0]
---------------- t = 0.3991487073703004, dt = 0.0008512926296996293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99991.0 min = 99991.0 factor = 1
 - strategy "round robin" : max = 94991.4 min = 94991.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99991
    max = 99991
    avg = 99991
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (3.3%)
   patch tree reduce : 2.67 us    (1.1%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.95 us    (0.8%)
   LB compute        : 212.00 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4006600542952445e-07,4.3018561108792216e-08,8.97019373146125e-10)
    sum a = (7.209944447028604e-18,-4.106415728288848e-18,2.752857078576476e-19)
    sum e = 0.045513816570436925
    sum de = 0.0007214367405488763
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.84e-03 |
|     force | 1.11e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004842559775967195 cfl multiplier : 0.8762735338966546        [sph::Model][rank=0]
Info: Timestep 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.2014e+05 | 99991 |      1 | 4.542e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.747039785559157 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 252.21s (max_walltime = 252.69s)  [SPH][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 252.20880267900003 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "vtk_dump" (counter = 5):
   -> t = 0.4 >= 0.4
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.vtk          [VTK Dump][rank=0]
              - took 5.19 ms, bandwidth = 1.08 GB/s
--------------------------------
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.4 -> 0.48000000000000004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4000000000000001 (current = 0.4)
   -> iter = None (current = 83)
   -> walltime = 252.691109261 (current = 252.214505583)

Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = 252.69s)      [SPH][rank=0]
---------------- t = 0.4, dt = 5.551115123125783e-17 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99991.0 min = 99991.0 factor = 1
 - strategy "round robin" : max = 94991.4 min = 94991.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99991
    max = 99991
    avg = 99991
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.6%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.7%)
   LB compute        : 217.82 us  (86.0%)
   LB move op cnt    : 0
   LB apply          : 15.55 us   (6.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (65.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.303929616531697e-18,-5.285485590866834e-18,1.2705494208814505e-21)
    sum a = (-4.662069341687669e-18,4.2012834183813297e-19,2.490276864927643e-19)
    sum e = 0.04551370479763664
    sum de = 0.0007214530768452008
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.07e-03 |
|     force | 1.16e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005070616632887185 cfl multiplier : 0.9175156892644365        [sph::Model][rank=0]
Info: Timestep 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.3917e+05 | 99991 |      1 | 4.181e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.779918115462966e-13 (tsim/hr)                         [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 252.63s (max_walltime = 252.69s)  [SPH][rank=0]
Info: iteration since start : 85                                                      [SPH][rank=0]
Info: time since start : 252.63327233500002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 20):
   -> t = 0.4000000000000001 >= 0.4000000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000020.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000020.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 338.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 339.27 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000020.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 377.57 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 337.50 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000020.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.031790002000000005 s
Info: compute_slice took 654.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 641.47 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000020.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.013777158000000001 s
Info: compute_slice took 665.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 588.74 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000020.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 570.84 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 572.50 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000020.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000020.json
sph::RenderFieldGetter compute custom field took :  0.007091552 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000020.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.4000000000000001 -> 0.4200000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4200000000000001 (current = 0.4000000000000001)
   -> iter = None (current = 84)
   -> walltime = 252.691109261 (current = 262.805553254)

Info: evolve_until (target_time = 0.42s, niter_max = -1, max_walltime = 252.69s)      [SPH][rank=0]
---------------- t = 0.4000000000000001, dt = 0.005070616632887185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99991.0 min = 99991.0 factor = 1
 - strategy "round robin" : max = 94991.4 min = 94991.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99991
    max = 99991
    avg = 99991
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.17 us    (3.4%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 1.41 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.7%)
   LB compute        : 213.70 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (77.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.337338180208309e-07,2.607852531659116e-07,5.469049098889032e-09)
    sum a = (4.445228907190568e-18,-1.0272815584300155e-17,-4.1928130889087867e-20)
    sum e = 0.045521320562197376
    sum de = 0.0007126694890592795
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.051415319352455545
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.169710421635483e-07,2.7894417477878616e-07,6.1381038692418085e-09)
    sum a = (8.456776945386935e-18,-8.145068820797352e-18,-3.218725199566341e-20)
    sum e = 0.04551734236561824
    sum de = 0.0007133785584288702
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.56e-03 |
|     force | 5.99e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002564006514216391 cfl multiplier : 0.4725052297548122        [sph::Model][rank=0]
Info: Timestep 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.8294e+05 | 99991 |      1 | 5.466e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.39742780989575 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 263.35s > 252.69s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 7):
   -> walltime = 263.352827638 >= 252.691109261
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000007.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (55.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.sham    [Shamrock Dump][rank=0]
              - took 5.44 ms, bandwidth = 2.36 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 263.352827638 -> 293.352827638

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4200000000000001 (current = 0.40507061663288724)
   -> iter = None (current = 85)
   -> walltime = 293.352827638 (current = 263.36222752500004)

Info: evolve_until (target_time = 0.42s, niter_max = -1, max_walltime = 293.35s)      [SPH][rank=0]
---------------- t = 0.40507061663288724, dt = 0.002564006514216391 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99991.0 min = 99991.0 factor = 1
 - strategy "round robin" : max = 94991.4 min = 94991.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99991
    max = 99991
    avg = 99991
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.3%)
   patch tree reduce : 2.28 us    (1.1%)
   gen split merge   : 677.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.9%)
   LB compute        : 179.42 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (71.6%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-6.570396004485381e-08,-4.557755362375192e-08,-4.079305131665436e-10) v=(4.6430801000663395e-07,-5.694424885549666e-07,1.2778750049826188e-08) l=(-8.052555506415039e-09,6.368211622013489e-09,5.854852011653211e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.128482949794629e-07,1.4043992954198236e-07,3.3059508562649915e-09)
    sum a = (-3.903127820947816e-18,9.2970336290632e-18,2.39710324072967e-19)
    sum e = 0.04551747406303468
    sum de = 0.000711260988291989
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.48e-03 |
|     force | 8.38e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003477692067244072 cfl multiplier : 0.6483368198365415        [sph::Model][rank=0]
Info: Timestep 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.1449e+05 | 99990 |      1 | 4.662e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.80032443580396 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.00s (niter = 15) global walltime = 263.83s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.40763462314710364, dt = 0.003477692067244072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99990.0 min = 99990.0 factor = 1
 - strategy "round robin" : max = 94990.5 min = 94990.5 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99990
    max = 99990
    avg = 99990
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (3.4%)
   patch tree reduce : 2.65 us    (1.3%)
   gen split merge   : 1.21 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.8%)
   LB compute        : 174.87 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (62.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.588021288004645e-07,2.0045068543096927e-07,4.4725712528336656e-09)
    sum a = (4.4994390158148434e-18,-1.0570971181733668e-18,-1.6305384234645282e-19)
    sum e = 0.04552079532788171
    sum de = 0.0006991756891268267
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.03555362946619134
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.58147475294472e-07,2.048727239486843e-07,4.611113062178889e-09)
    sum a = (2.927345865710862e-18,-5.78692909564138e-18,-1.6093625997831706e-19)
    sum e = 0.04551891134397272
    sum de = 0.0006994748793715055
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.02e-03 |
|     force | 4.95e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002024346578505062 cfl multiplier : 0.38277893994551376       [sph::Model][rank=0]
Info: Timestep 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.8385e+05 | 99990 |      1 | 5.439e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.019709957889177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4111123152143477, dt = 0.002024346578505062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99990.0 min = 99990.0 factor = 1
 - strategy "round robin" : max = 94990.5 min = 94990.5 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99990
    max = 99990
    avg = 99990
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (3.4%)
   patch tree reduce : 2.01 us    (0.9%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.98 us    (0.9%)
   LB compute        : 195.53 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (68.9%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.9999999989472883e-07 r=(1.1890503374289255e-08,-5.907313772098286e-08,-1.5958413838557065e-09) v=(5.188304827295396e-07,1.4857689118160712e-07,1.0119412541987397e-08) l=(1.1953421312145852e-08,2.7577599254495693e-08,1.160367253201281e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2530547728510403e-07,1.1923987413466476e-07,2.857809208416434e-09)
    sum a = (2.3310346708438345e-18,5.6785088783928295e-18,8.046812998915853e-20)
    sum e = 0.04551559066629632
    sum de = 0.0006937129661837018
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.02067750392840116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.265734623784239e-07,1.1768206413550992e-07,2.790891704456434e-09)
    sum a = (2.439454888092385e-18,1.4772254600114998e-17,7.919758056827708e-20)
    sum e = 0.045514950125031366
    sum de = 0.0006938527021190269
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.54e-03 |
|     force | 3.82e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.001543713983533381 cfl multiplier : 0.29425964664850457       [sph::Model][rank=0]
Info: Timestep 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.8376e+05 | 99988 |      1 | 5.441e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.393340954830501 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4131366617928528, dt = 0.001543713983533381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99988.0 min = 99988.0 factor = 1
 - strategy "round robin" : max = 94988.6 min = 94988.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99988
    max = 99988
    avg = 99988
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (3.6%)
   patch tree reduce : 2.53 us    (1.2%)
   gen split merge   : 809.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.8%)
   LB compute        : 180.63 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (67.0%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(3.148242280717032e-08,-7.343924088320385e-08,-1.786761949354813e-10) v=(6.589874603261464e-07,3.452158329905698e-07,-1.1827549314084393e-09) l=(1.4797190507106156e-09,-8.068970971744111e-10,5.923735454287178e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4945816293688743e-07,8.960121833872332e-08,2.120146237574923e-09)
    sum a = (2.168404344971009e-18,-1.779446815591834e-17,1.6432439176733427e-19)
    sum e = 0.04551360114662946
    sum de = 0.0006925404790721868
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.93e-03 |
|     force | 6.87e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002934172460158662 cfl multiplier : 0.5295064310990031        [sph::Model][rank=0]
Info: Timestep 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.1688e+05 | 99987 |      1 | 4.610e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.054515089793137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.41468037577638617, dt = 0.002934172460158662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99987.0 min = 99987.0 factor = 1
 - strategy "round robin" : max = 94987.6 min = 94987.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99987
    max = 99987
    avg = 99987
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (3.1%)
   patch tree reduce : 2.31 us    (1.0%)
   gen split merge   : 914.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.04 us    (0.8%)
   LB compute        : 215.61 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7254619061570336e-07,1.752170022909034e-07,4.178214100441016e-09)
    sum a = (4.7704895589362195e-18,-1.009663273127126e-17,1.7914746834428452e-19)
    sum e = 0.04551658871774236
    sum de = 0.0006844882298631854
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.029920566724453708
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.764605707267529e-07,1.7686707587741268e-07,4.415535241019028e-09)
    sum a = (4.662069341687669e-18,-1.338989683019598e-17,1.6855955650360577e-19)
    sum e = 0.04551525256238259
    sum de = 0.0006846882446348188
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.85e-03 |
|     force | 4.44e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0018533192949216806 cfl multiplier : 0.3431688103663344       [sph::Model][rank=0]
Info: Timestep 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.8406e+05 | 99987 |      1 | 5.432e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.444856564904235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4176145482365448, dt = 0.0018533192949216806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99987.0 min = 99987.0 factor = 1
 - strategy "round robin" : max = 94987.6 min = 94987.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99987
    max = 99987
    avg = 99987
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (3.4%)
   patch tree reduce : 2.51 us    (1.1%)
   gen split merge   : 1.23 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.94 us    (0.9%)
   LB compute        : 195.77 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (67.8%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(4.911466523222872e-08,-6.29690574732398e-08,-1.3008286031799217e-10) v=(5.298579888076945e-07,5.136465035275858e-07,3.12106109915164e-09) l=(-1.293478050804064e-09,-2.218654510893895e-09,5.85610139361393e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0149488735987484e-07,1.1165285931927162e-07,2.7946838222340272e-09)
    sum a = (4.7704895589362195e-18,6.396792817664476e-18,-1.7702988597614877e-19)
    sum e = 0.04551431620502468
    sum de = 0.0006829844741859315
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.99e-03 |
|     force | 7.27e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0029884057490878763 cfl multiplier : 0.562112540244223        [sph::Model][rank=0]
Info: Timestep 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.1786e+05 | 99986 |      1 | 4.589e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.537832394204944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4194678675314665, dt = 0.0005321324685336193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99986.0 min = 99986.0 factor = 1
 - strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99986
    max = 99986
    avg = 99986
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.69 us    (3.3%)
   patch tree reduce : 2.33 us    (1.0%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.80 us    (0.8%)
   LB compute        : 210.79 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.622646584664404e-08,3.309563557749869e-08,8.296866190442496e-10)
    sum a = (-7.37257477290143e-18,-9.053088140253962e-18,-3.9387032047324966e-20)
    sum e = 0.04551419130259428
    sum de = 0.000682613425914578
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.75e-03 |
|     force | 9.15e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0037484357888932867 cfl multiplier : 0.7080750268294821       [sph::Model][rank=0]
Info: Timestep 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.1917e+05 | 99986 |      1 | 4.562e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.199254021199278 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 93                                                      [SPH][rank=0]
Info: time since start : 266.839693667 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 21):
   -> t = 0.4200000000000001 >= 0.4200000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.59 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000021.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.66 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000021.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 353.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 380.72 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000021.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 414.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 346.68 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000021.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.035825208000000004 s
Info: compute_slice took 609.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 582.25 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000021.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016252982000000003 s
Info: compute_slice took 631.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 651.15 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000021.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 618.09 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 579.97 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000021.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000021.json
sph::RenderFieldGetter compute custom field took :  0.007336162 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000021.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.4200000000000001 -> 0.4400000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4400000000000001 (current = 0.4200000000000001)
   -> iter = None (current = 92)
   -> walltime = 293.352827638 (current = 277.42350879400004)

Info: evolve_until (target_time = 0.44s, niter_max = -1, max_walltime = 293.35s)      [SPH][rank=0]
---------------- t = 0.4200000000000001, dt = 0.0037484357888932867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99986.0 min = 99986.0 factor = 1
 - strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99986
    max = 99986
    avg = 99986
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.7%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.6%)
   LB compute        : 266.04 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (78.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.070068364389834e-07,2.351918582160889e-07,5.902824556097346e-09)
    sum a = (-4.445228907190568e-18,-3.9302328752599536e-18,-1.9058241313221758e-19)
    sum e = 0.04551886897580186
    sum de = 0.0006788241305713772
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.14e-03 |
|     force | 1.04e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004136822929428604 cfl multiplier : 0.8053833512196548        [sph::Model][rank=0]
Info: Timestep 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.1223e+05 | 99986 |      1 | 4.711e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.643308301630846 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.77s (niter = 8) global walltime = 277.90s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.4237484357888934, dt = 0.004136822929428604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99986.0 min = 99986.0 factor = 1
 - strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99986
    max = 99986
    avg = 99986
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (3.3%)
   patch tree reduce : 2.52 us    (1.2%)
   gen split merge   : 1.32 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.98 us    (0.9%)
   LB compute        : 180.51 us  (85.0%)
   LB move op cnt    : 0
   LB apply          : 5.15 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.66636303301563e-07,2.7555251376523536e-07,6.966926926835079e-09)
    sum a = (-2.710505431213761e-19,-1.2305694657710475e-17,1.5712461171567271e-19)
    sum e = 0.045522146019610465
    sum de = 0.000674645141921387
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.59e-03 |
|     force | 1.12e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004593969067522754 cfl multiplier : 0.8702555674797697        [sph::Model][rank=0]
Info: Timestep 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.9361e+05 | 99986 |      1 | 5.164e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83720464948275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.427885258718322, dt = 0.004593969067522754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99986.0 min = 99986.0 factor = 1
 - strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99986
    max = 99986
    avg = 99986
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.19 us    (3.7%)
   patch tree reduce : 2.25 us    (1.0%)
   gen split merge   : 1.46 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 2.07 us    (0.9%)
   LB compute        : 194.58 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.357423266212868e-07,3.255294012700696e-07,8.28837573257239e-09)
    sum a = (3.469446951953614e-18,-7.508100044462118e-18,1.4399560103323106e-20)
    sum e = 0.045525857164013896
    sum de = 0.0006696338446508807
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.70e-03 |
|     force | 1.17e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004700137369140146 cfl multiplier : 0.9135037116531798        [sph::Model][rank=0]
Info: Timestep 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.1164e+05 | 99986 |      1 | 4.724e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.006154392963 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.43247922778584474, dt = 0.004700137369140146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99986.0 min = 99986.0 factor = 1
 - strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99986
    max = 99986
    avg = 99986
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (3.1%)
   patch tree reduce : 2.36 us    (1.0%)
   gen split merge   : 879.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.7%)
   LB compute        : 203.87 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (67.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.468613281439362e-07,3.5512187273228956e-07,9.102475585428754e-09)
    sum a = (-2.710505431213761e-18,-5.719166459861036e-18,-3.4728350837426314e-20)
    sum e = 0.045529151806058314
    sum de = 0.0006523466900934908
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04793435874859085
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.224721575635733e-07,3.5948889225880377e-07,8.235970228644704e-09)
    sum a = (-2.8731357570865868e-18,4.30970363562988e-18,-2.0752307207730358e-20)
    sum e = 0.045525700642404236
    sum de = 0.0006528803115942898
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.55e-03 |
|     force | 6.03e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0025511125689118546 cfl multiplier : 0.4711679038843933       [sph::Model][rank=0]
Info: Timestep 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.7902e+05 | 99986 |      1 | 5.585e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.294835183795968 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4371793651549849, dt = 0.0025511125689118546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99986.0 min = 99986.0 factor = 1
 - strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99986
    max = 99986
    avg = 99986
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (3.4%)
   patch tree reduce : 2.45 us    (1.1%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.17 us    (1.0%)
   LB compute        : 195.07 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (68.8%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=2.9999999995311555e-07 r=(-9.649970970645719e-08,-9.936755319160456e-08,-8.212618156448375e-09) v=(9.850241717241568e-07,-8.286442491888611e-07,2.7462575529911468e-08) l=(-3.580243560797482e-08,-2.2499715284149836e-08,1.7564224586267355e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9227444865684027e-07,1.941781875693666e-07,4.802793401694586e-09)
    sum a = (4.553649124439119e-18,-5.014435047745458e-18,-8.682087709356578e-20)
    sum e = 0.045520188332622905
    sum de = 0.0006450188673299023
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.026044449358197646
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.82565265022626e-07,1.9926072719154156e-07,4.602793016261122e-09)
    sum a = (3.7947076036992655e-19,-1.6263032587282567e-18,-8.766791004082009e-20)
    sum e = 0.04551916857691824
    sum de = 0.0006452404186840561
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.72e-03 |
|     force | 4.14e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0017183585312086963 cfl multiplier : 0.32372263462813106      [sph::Model][rank=0]
Info: Timestep 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.7934e+05 | 99983 |      1 | 5.575e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.47347527617468 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.43973047772389673, dt = 0.0002695222761033844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99983.0 min = 99983.0 factor = 1
 - strategy "round robin" : max = 94983.8 min = 94983.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99983
    max = 99983
    avg = 99983
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (3.5%)
   patch tree reduce : 2.35 us    (1.1%)
   gen split merge   : 1.39 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.93 us    (0.9%)
   LB compute        : 193.93 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 us    (71.0%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-7.678780746110629e-08,-2.1890808413198195e-08,-5.547079118453308e-10) v=(2.6268515434068446e-07,-6.722598751922101e-07,1.4931411569752237e-08) l=(-6.996898118458544e-09,1.0006578538959464e-08,5.736791653441891e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0379529605408574e-08,2.0988257982423072e-08,4.883813495954085e-10)
    sum a = (-4.0115480381963664e-18,-3.06287113727155e-18,-3.2991933295555e-19)
    sum e = 0.045516727874282736
    sum de = 0.0006406556102717597
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.91e-03 |
|     force | 7.04e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0029090068438991142 cfl multiplier : 0.5491484230854207       [sph::Model][rank=0]
Info: Timestep 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.1834e+05 | 99982 |      1 | 4.579e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.118870650581305 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 99                                                      [SPH][rank=0]
Info: time since start : 280.460962579 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 22):
   -> t = 0.4400000000000001 >= 0.4400000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000022.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000022.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 340.10 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 343.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000022.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 382.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 346.78 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000022.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033148008 s
Info: compute_slice took 620.12 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 592.90 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000022.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016001331 s
Info: compute_slice took 600.99 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 584.24 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000022.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 614.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 589.91 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000022.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000022.json
sph::RenderFieldGetter compute custom field took :  0.007455393 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000022.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.4400000000000001 -> 0.46000000000000013

[Simulation] Evolve until next trigger(s) :
   -> t = 0.46000000000000013 (current = 0.4400000000000001)
   -> iter = None (current = 98)
   -> walltime = 293.352827638 (current = 290.550442551)

Info: evolve_until (target_time = 0.46s, niter_max = -1, max_walltime = 293.35s)      [SPH][rank=0]
---------------- t = 0.4400000000000001, dt = 0.0029090068438991142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99982.0 min = 99982.0 factor = 1
 - strategy "round robin" : max = 94982.9 min = 94982.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99982
    max = 99982
    avg = 99982
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (3.5%)
   patch tree reduce : 2.13 us    (1.0%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.7%)
   LB compute        : 190.47 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.7%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(7.969596733396364e-08,6.057066391411953e-09,-2.9860795034850856e-09) v=(-1.2364903470516993e-07,7.15746659890887e-07,-1.5339848017324585e-08) l=(2.041898524192481e-08,1.605636050522252e-08,5.77534931807749e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.454098284887724e-07,2.2914039220441366e-07,5.092753971208436e-09)
    sum a = (-7.047314121155779e-19,4.472333961502706e-18,2.659683454378503e-19)
    sum e = 0.04551720715471153
    sum de = 0.0006335798943650843
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.029665605868792657
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5091123402784714e-07,2.3443338866002694e-07,5.34191071544761e-09)
    sum a = (-5.204170427930421e-18,1.4121733296623695e-17,2.5453340064991725e-19)
    sum e = 0.045515892831517635
    sum de = 0.0006337858946194485
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.81e-03 |
|     force | 4.48e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00181355455635096 cfl multiplier : 0.34971614102847354        [sph::Model][rank=0]
Info: Timestep 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.7082e+05 | 99981 |      1 | 5.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89241544036031 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 291.14s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.4429090068438992, dt = 0.00181355455635096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99981.0 min = 99981.0 factor = 1
 - strategy "round robin" : max = 94981.9 min = 94981.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99981
    max = 99981
    avg = 99981
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.15 us    (4.0%)
   patch tree reduce : 2.90 us    (1.4%)
   gen split merge   : 1.12 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.82 us    (0.9%)
   LB compute        : 177.46 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (66.7%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(7.713311834760256e-08,-2.0859229557847745e-08,1.4711944738954682e-09) v=(1.4510962036040262e-07,7.224591976087003e-07,-7.1552079469497445e-09) l=(-9.137038956004275e-09,7.629684024255756e-09,5.872219159227679e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8158528783729935e-07,1.4641845947379988e-07,3.3079435272163324e-09)
    sum a = (1.3552527156068805e-18,1.2522535092207576e-17,9.190307477709159e-20)
    sum e = 0.04551480837503218
    sum de = 0.0006316311811598315
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.90e-03 |
|     force | 7.26e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0029002440630444422 cfl multiplier : 0.5664774273523157       [sph::Model][rank=0]
Info: Timestep 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.1208e+05 | 99980 |      1 | 4.714e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.849182906590032 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 291.61s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.4447225614002502, dt = 0.0029002440630444422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99980.0 min = 99980.0 factor = 1
 - strategy "round robin" : max = 94981.0 min = 94981.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99980
    max = 99980
    avg = 99980
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (3.1%)
   patch tree reduce : 2.60 us    (1.1%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.7%)
   LB compute        : 217.50 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (68.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.478511118806032e-07,2.389086435777854e-07,5.473969169542227e-09)
    sum a = (1.0299920638612292e-18,8.321251673826247e-18,-5.082197683525802e-21)
    sum e = 0.045517424742621465
    sum de = 0.0006281572568845875
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.18e-03 |
|     force | 9.12e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0041830929107527694 cfl multiplier : 0.7109849515682104       [sph::Model][rank=0]
Info: Timestep 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.1960e+05 | 99980 |      1 | 4.553e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.933112972043958 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 292.06s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.44762280546329464, dt = 0.0041830929107527694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99980.0 min = 99980.0 factor = 1
 - strategy "round robin" : max = 94981.0 min = 94981.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99980
    max = 99980
    avg = 99980
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (3.3%)
   patch tree reduce : 2.29 us    (1.1%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.36 us    (1.2%)
   LB compute        : 176.71 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (66.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.418255585367573e-07,3.5648254803289845e-07,8.236111899977166e-09)
    sum a = (1.6263032587282567e-19,-9.215718466126788e-19,-1.1773757966834775e-19)
    sum e = 0.04552144802404878
    sum de = 0.0006228106648245446
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.64e-03 |
|     force | 1.04e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004636629494897853 cfl multiplier : 0.8073233010454736        [sph::Model][rank=0]
Info: Timestep 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.9924e+05 | 99980 |      1 | 5.018e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.01035466306631 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 292.57s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.4518058983740474, dt = 0.004636629494897853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99980.0 min = 99980.0 factor = 1
 - strategy "round robin" : max = 94981.0 min = 94981.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99980
    max = 99980
    avg = 99980
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (3.5%)
   patch tree reduce : 2.23 us    (1.1%)
   gen split merge   : 995.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.02 us    (1.0%)
   LB compute        : 176.66 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 5.02 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043547128712026e-07,4.1401938411065616e-07,9.672011329395333e-09)
    sum a = (2.710505431213761e-19,2.168404344971009e-19,-3.3881317890172014e-21)
    sum e = 0.04552494586163106
    sum de = 0.0006108380010970997
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04692793532610246
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.07488555259174e-07,4.4311185984383876e-07,1.052492728795864e-08)
    sum a = (-1.2468324983583301e-18,5.800481622797449e-18,-9.317362419797304e-21)
    sum e = 0.045521605009573106
    sum de = 0.0006113167013118944
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.44e-03 |
|     force | 5.59e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0024414669131325503 cfl multiplier : 0.43577443368182456      [sph::Model][rank=0]
Info: Timestep 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.8704e+05 | 99980 |      1 | 5.345e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.226363021623058 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 293.10s (max_walltime = 293.35s)  [SPH][rank=0]
---------------- t = 0.45644252786894524, dt = 0.0024414669131325503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99980.0 min = 99980.0 factor = 1
 - strategy "round robin" : max = 94981.0 min = 94981.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99980
    max = 99980
    avg = 99980
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (3.2%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.21 us    (0.9%)
   LB compute        : 207.77 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 5.16 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (69.0%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(6.486503812925005e-08,4.679165641667958e-08,1.4218291672309716e-09) v=(-4.863356828949551e-07,5.343976766430115e-07,2.16848512337391e-08) l=(2.6008943954429204e-09,-2.104600165428715e-08,5.739579571370599e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.726435982615066e-07,2.3378266633175803e-07,5.443915022789569e-09)
    sum a = (1.734723475976807e-18,-5.692061405548898e-19,-3.134021904840911e-20)
    sum e = 0.04552139005704059
    sum de = 0.0006079432908598204
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.45e-03 |
|     force | 8.01e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0034495334540612346 cfl multiplier : 0.6238496224545497       [sph::Model][rank=0]
Info: Timestep 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.1940e+05 | 99979 |      1 | 4.557e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.28735504441332 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 293.56s > 293.35s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 8):
   -> walltime = 293.558054818 >= 293.352827638
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000008.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (55.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.sham    [Shamrock Dump][rank=0]
              - took 5.69 ms, bandwidth = 2.25 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 293.558054818 -> 323.558054818

[Simulation] Evolve until next trigger(s) :
   -> t = 0.46000000000000013 (current = 0.4588839947820778)
   -> iter = None (current = 104)
   -> walltime = 323.558054818 (current = 293.567580785)

Info: evolve_until (target_time = 0.46s, niter_max = -1, max_walltime = 323.56s)      [SPH][rank=0]
---------------- t = 0.4588839947820778, dt = 0.0011160052179223223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99979.0 min = 99979.0 factor = 1
 - strategy "round robin" : max = 94980.0 min = 94980.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99979
    max = 99979
    avg = 99979
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (1.9%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 225.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6912186511076714e-07,1.0933045938245529e-07,2.611624425348192e-09)
    sum a = (-2.8731357570865868e-18,-5.936006894358137e-18,1.7279472123987727e-19)
    sum e = 0.045521336392436273
    sum de = 0.0006065719088026388
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.12e-03 |
|     force | 9.62e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004120184625053103 cfl multiplier : 0.7492330816363664        [sph::Model][rank=0]
Info: Timestep 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.2027e+05 | 99979 |      1 | 4.539e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.851662225313387 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.27s (niter = 16) global walltime = 294.02s (max_walltime = 323.56s)  [SPH][rank=0]
Info: iteration since start : 106                                                     [SPH][rank=0]
Info: time since start : 294.022192757 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 23):
   -> t = 0.46000000000000013 >= 0.46000000000000013
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.49 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000023.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000023.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 339.14 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 338.03 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000023.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 377.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 342.37 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000023.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.032602055000000005 s
Info: compute_slice took 646.54 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 583.44 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000023.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.013763475 s
Info: compute_slice took 594.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 583.34 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000023.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 587.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 585.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000023.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.50 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000023.json
sph::RenderFieldGetter compute custom field took :  0.007740957000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000023.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.46000000000000013 -> 0.48000000000000015

[Simulation] Evolve until next trigger(s) :
   -> t = 0.48000000000000004 (current = 0.46000000000000013)
   -> iter = None (current = 105)
   -> walltime = 323.558054818 (current = 304.103723801)

Info: evolve_until (target_time = 0.48s, niter_max = -1, max_walltime = 323.56s)      [SPH][rank=0]
---------------- t = 0.46000000000000013, dt = 0.004120184625053103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99979.0 min = 99979.0 factor = 1
 - strategy "round robin" : max = 94980.0 min = 94980.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99979
    max = 99979
    avg = 99979
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.25 us    (3.5%)
   patch tree reduce : 2.33 us    (1.0%)
   gen split merge   : 1.21 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.7%)
   LB compute        : 212.25 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 5.37 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.223583248469755e-07,4.081339641242584e-07,9.77378100687872e-09)
    sum a = (-4.336808689942018e-18,8.375461782450522e-18,-8.470329472543003e-22)
    sum e = 0.04552626137843189
    sum de = 0.0005965926951095841
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04201982718810458
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.034656450310048e-07,4.1839687338681716e-07,1.0295505170333064e-08)
    sum a = (-3.0899761915836876e-18,-1.4907779871675686e-18,1.1011428314305904e-20)
    sum e = 0.04552362314736366
    sum de = 0.000596952133455807
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.24e-03 |
|     force | 5.35e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0022438610863798666 cfl multiplier : 0.41641102721212214      [sph::Model][rank=0]
Info: Timestep 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.8374e+05 | 99979 |      1 | 5.441e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.25942158347723 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.36s (niter = 8) global walltime = 304.65s (max_walltime = 323.56s)  [SPH][rank=0]
---------------- t = 0.4641201846250532, dt = 0.0022438610863798666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99979.0 min = 99979.0 factor = 1
 - strategy "round robin" : max = 94980.0 min = 94980.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99979
    max = 99979
    avg = 99979
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (3.5%)
   patch tree reduce : 2.51 us    (1.2%)
   gen split merge   : 1.23 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.87 us    (0.9%)
   LB compute        : 183.33 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.5%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-6.972932997256697e-08,-3.9017164711916763e-08,2.277112629356012e-10) v=(3.9636789180007325e-07,-6.036745024022423e-07,-5.46568029625804e-09) l=(3.4950889692629853e-09,-2.8887607219697335e-09,5.752853742499187e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2843621172330543e-07,2.2730095357025465e-07,5.579166104882604e-09)
    sum a = (-5.149960319306146e-18,3.7947076036992655e-19,-2.879912020664621e-19)
    sum e = 0.04552310988878852
    sum de = 0.0005900801956468854
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.022894467892898656
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.218202056758649e-07,2.2726370697145085e-07,5.741848754640265e-09)
    sum a = (-2.5478751053409354e-18,8.836247705756861e-18,-2.837560373301906e-19)
    sum e = 0.04552232381160364
    sum de = 0.0005901990844992548
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.62e-03 |
|     force | 3.93e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0016237482105316019 cfl multiplier : 0.30547034240404075      [sph::Model][rank=0]
Info: Timestep 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.8318e+05 | 99978 |      1 | 5.458e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.800176229753498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4663640457114331, dt = 0.0016237482105316019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99978.0 min = 99978.0 factor = 1
 - strategy "round robin" : max = 94979.1 min = 94979.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99978
    max = 99978
    avg = 99978
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (3.2%)
   patch tree reduce : 2.31 us    (1.0%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.08 us    (0.9%)
   LB compute        : 209.52 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (66.6%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-5.144777526746021e-08,-6.11702197232806e-08,-8.633319067842748e-11) v=(5.923555906297602e-07,-4.3129148911484787e-07,-6.325681151545345e-09) l=(3.522751856105578e-09,-3.787272051404881e-09,5.841382361065977e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3281229670351364e-07,1.6418085380281015e-07,4.1965762450065746e-09)
    sum a = (-3.957337929572091e-18,-8.321251673826247e-18,9.147955830346444e-20)
    sum e = 0.04552098744991223
    sum de = 0.0005878665098114233
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.82e-03 |
|     force | 6.90e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0028157361912930904 cfl multiplier : 0.5369802282693605       [sph::Model][rank=0]
Info: Timestep 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.1928e+05 | 99977 |      1 | 4.559e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.820922785379977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4679877939219647, dt = 0.0028157361912930904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99977.0 min = 99977.0 factor = 1
 - strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99977
    max = 99977
    avg = 99977
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.09 us    (3.5%)
   patch tree reduce : 2.26 us    (1.0%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.87 us    (0.8%)
   LB compute        : 204.19 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0172130823546977e-07,2.8933749565350126e-07,7.3329894495953906e-09)
    sum a = (-4.87890977618477e-19,-3.496552006265752e-18,-1.6771252355635147e-19)
    sum e = 0.045523456418546576
    sum de = 0.0005837749802692811
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.54e-03 |
|     force | 8.88e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003543962837920306 cfl multiplier : 0.6913201521795737        [sph::Model][rank=0]
Info: Timestep 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.1919e+05 | 99977 |      1 | 4.561e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.22350686574311 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4708035301132578, dt = 0.003543962837920306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99977.0 min = 99977.0 factor = 1
 - strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99977
    max = 99977
    avg = 99977
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (3.3%)
   patch tree reduce : 2.37 us    (1.1%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.8%)
   LB compute        : 192.35 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (64.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.008568519477376e-07,3.731675058453027e-07,9.507363933846413e-09)
    sum a = (-3.5236570605778894e-18,-1.2739375526704677e-17,-5.844527336054672e-20)
    sum e = 0.04552623544598592
    sum de = 0.0005784991597187253
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.08e-03 |
|     force | 1.02e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004083473668236445 cfl multiplier : 0.7942134347863824        [sph::Model][rank=0]
Info: Timestep 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.1395e+05 | 99977 |      1 | 4.673e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.302382705518035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4743474929511781, dt = 0.004083473668236445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99977.0 min = 99977.0 factor = 1
 - strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99977
    max = 99977
    avg = 99977
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.18 us    (3.4%)
   patch tree reduce : 2.31 us    (1.0%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.04 us    (0.8%)
   LB compute        : 217.28 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (59.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.699227335200863e-07,4.428905453505229e-07,1.1355515772183293e-08)
    sum a = (-3.957337929572091e-18,-7.047314121155779e-19,-1.5331296345302836e-19)
    sum e = 0.04552922641525955
    sum de = 0.0005698358806028485
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.041681427296545316
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.497297569328721e-07,4.525231020969358e-07,1.1159897225714056e-08)
    sum a = (-1.3010426069826053e-18,-9.351243737687476e-18,-1.4314856808597676e-19)
    sum e = 0.04552663434904836
    sum de = 0.0005701717184129033
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.21e-03 |
|     force | 5.55e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0022101559738537087 cfl multiplier : 0.4314044782621275       [sph::Model][rank=0]
Info: Timestep 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.8097e+05 | 99977 |      1 | 5.524e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.61028184986041 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4784309666194146, dt = 0.0015690333805854495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99977.0 min = 99977.0 factor = 1
 - strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99977
    max = 99977
    avg = 99977
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (3.3%)
   patch tree reduce : 2.55 us    (1.1%)
   gen split merge   : 1.26 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.20 us    (1.0%)
   LB compute        : 201.58 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 us    (59.3%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-7.313559365196553e-08,-3.1996667757988346e-08,-4.146251837170784e-09) v=(3.1629701039684235e-07,-6.54756897229545e-07,-1.0849782440163554e-08) l=(-2.3633195250412436e-08,-2.1107828666396664e-08,5.797544480808407e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1105533232559665e-07,1.7337369328225094e-07,4.357870081207772e-09)
    sum a = (-9.215718466126788e-19,9.2970336290632e-18,1.3721933745519665e-19)
    sum e = 0.04552522884972826
    sum de = 0.0005677394117788646
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.49e-03 |
|     force | 8.00e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003494629911999966 cfl multiplier : 0.6209363188414184        [sph::Model][rank=0]
Info: Timestep 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.9541e+05 | 99976 |      1 | 5.116e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.040262708465558 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 113                                                     [SPH][rank=0]
Info: time since start : 307.64130025500003 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "vtk_dump" (counter = 6):
   -> t = 0.48000000000000004 >= 0.48000000000000004
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.vtk          [VTK Dump][rank=0]
              - took 5.26 ms, bandwidth = 1.06 GB/s
--------------------------------
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.48000000000000004 -> 0.56

[Simulation] Evolve until next trigger(s) :
   -> t = 0.48000000000000015 (current = 0.48000000000000004)
   -> iter = None (current = 112)
   -> walltime = 323.558054818 (current = 307.647086145)

Info: evolve_until (target_time = 0.48s, niter_max = -1, max_walltime = 323.56s)      [SPH][rank=0]
---------------- t = 0.48000000000000004, dt = 1.1102230246251565e-16 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99976.0 min = 99976.0 factor = 1
 - strategy "round robin" : max = 94977.2 min = 94977.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99976
    max = 99976
    avg = 99976
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.7%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1.17 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.03 us    (0.8%)
   LB compute        : 232.85 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (65.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.876022766635678e-18,1.3179832659276913e-18,-3.8116482626443515e-21)
    sum a = (2.168404344971009e-18,2.8731357570865868e-18,1.2451384324638215e-19)
    sum e = 0.045524844754306806
    sum de = 0.0005678000922661301
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.21e-03 |
|     force | 9.62e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004206257574901074 cfl multiplier : 0.7472908792276124        [sph::Model][rank=0]
Info: Timestep 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.3604e+05 | 99976 |      1 | 4.235e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.436502696014672e-13 (tsim/hr)                         [sph::Model][rank=0]
Info: next walltime check in 3.82s (niter = 9) global walltime = 308.07s (max_walltime = 323.56s)  [SPH][rank=0]
Info: iteration since start : 114                                                     [SPH][rank=0]
Info: time since start : 308.071416301 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 24):
   -> t = 0.48000000000000015 >= 0.48000000000000015
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000024.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000024.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 335.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 345.96 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000024.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 376.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 337.49 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000024.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.030485574 s
Info: compute_slice took 600.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 575.95 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000024.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012329543 s
Info: compute_slice took 572.95 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 572.36 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000024.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 572.09 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 573.45 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000024.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000024.json
sph::RenderFieldGetter compute custom field took :  0.007065619 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000024.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.48000000000000015 -> 0.5000000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5000000000000001 (current = 0.48000000000000015)
   -> iter = None (current = 113)
   -> walltime = 323.558054818 (current = 318.01241168900003)

Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = 323.56s)      [SPH][rank=0]
---------------- t = 0.48000000000000015, dt = 0.004206257574901074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99976.0 min = 99976.0 factor = 1
 - strategy "round robin" : max = 94977.2 min = 94977.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99976
    max = 99976
    avg = 99976
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.09 us    (3.5%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 1.46 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.7%)
   LB compute        : 208.94 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.62785224713348e-07,4.717028931438316e-07,1.1671796223936878e-08)
    sum a = (1.8431436932253575e-18,9.784924606681678e-18,-1.6008922703106276e-19)
    sum e = 0.04552996519835147
    sum de = 0.0005558294070799997
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04289164616054317
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.608895377670896e-07,4.970036266980211e-07,1.2098166546367777e-08)
    sum a = (-2.2768245622195593e-18,4.7704895589362195e-18,-1.5161889755851976e-19)
    sum e = 0.04552720893037267
    sum de = 0.0005561777925368912
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.24e-03 |
|     force | 5.36e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0022441122246241547 cfl multiplier : 0.41576362640920417      [sph::Model][rank=0]
Info: Timestep 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.8246e+05 | 99976 |      1 | 5.479e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.63556212016203 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.10s (niter = 2) global walltime = 318.56s (max_walltime = 323.56s)  [SPH][rank=0]
---------------- t = 0.4842062575749012, dt = 0.0022441122246241547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99976.0 min = 99976.0 factor = 1
 - strategy "round robin" : max = 94977.2 min = 94977.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99976
    max = 99976
    avg = 99976
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (3.6%)
   patch tree reduce : 2.24 us    (1.1%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.89 us    (0.9%)
   LB compute        : 176.17 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (68.5%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(4.7087169150608686e-08,6.439629250711213e-08,-2.7201035940997675e-10) v=(-6.312698401087007e-07,3.753524484335726e-07,1.222520902672509e-08) l=(8.920179539515549e-09,-4.060128635806805e-09,5.829512226188038e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9918068496086767e-07,2.6572891539961216e-07,6.41094176856915e-09)
    sum a = (4.4994390158148434e-18,1.349831704744453e-17,-2.456395547037471e-20)
    sum e = 0.045526521990049765
    sum de = 0.0005486632409906482
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.022912730983982096
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9171482755088545e-07,2.745846233182393e-07,6.450462684413993e-09)
    sum a = (6.179952383167375e-18,1.1329912702473521e-17,-1.0164395367051604e-20)
    sum e = 0.04552573429832804
    sum de = 0.0005487728003972384
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.65e-03 |
|     force | 3.94e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0016473044792073776 cfl multiplier : 0.3052545421364014       [sph::Model][rank=0]
Info: Timestep 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.8342e+05 | 99975 |      1 | 5.451e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.821566028788935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4864503697995254, dt = 0.0016473044792073776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99975.0 min = 99975.0 factor = 1
 - strategy "round robin" : max = 94976.2 min = 94976.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99975
    max = 99975
    avg = 99975
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (3.1%)
   patch tree reduce : 2.45 us    (1.0%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.7%)
   LB compute        : 212.80 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (72.0%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-5.324619330289722e-08,5.963634072798367e-08,-1.612221620012324e-09) v=(-4.968017442647584e-07,-5.192144004295691e-07,6.968762483295054e-09) l=(-4.264402741495997e-09,1.1666995279630209e-08,5.724027683339289e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1360922268330714e-07,2.015176555459482e-07,4.8190124224368e-09)
    sum a = (3.2526065174565133e-19,7.589415207398531e-18,2.795208725939191e-20)
    sum e = 0.045524433647740496
    sum de = 0.0005461396278825802
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.18e-03 |
|     force | 6.93e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003180039164113124 cfl multiplier : 0.5368363614242676        [sph::Model][rank=0]
Info: Timestep 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.1853e+05 | 99974 |      1 | 4.575e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.962898919106165 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.52s (niter = 1) global walltime = 319.56s (max_walltime = 323.56s)  [SPH][rank=0]
---------------- t = 0.48809767427873274, dt = 0.003180039164113124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99974.0 min = 99974.0 factor = 1
 - strategy "round robin" : max = 94975.3 min = 94975.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99974
    max = 99974
    avg = 99974
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.8%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.94 us    (0.7%)
   LB compute        : 234.87 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.101623629823841e-07,3.9341610940948305e-07,9.281896403677304e-09)
    sum a = (5.963111948670274e-19,-9.595189226496714e-18,3.3881317890172014e-21)
    sum e = 0.04552730801233638
    sum de = 0.0005375640209465646
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.032488863322708394
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.131689479383734e-07,4.0465786529684657e-07,9.915833469669867e-09)
    sum a = (-1.951563910473908e-18,-1.6263032587282567e-19,5.082197683525802e-21)
    sum e = 0.0455257342147705
    sum de = 0.0005377423298677558
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.01e-03 |
|     force | 4.47e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0020101313484678324 cfl multiplier : 0.3456121204747558       [sph::Model][rank=0]
Info: Timestep 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.8442e+05 | 99974 |      1 | 5.421e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.118672894897447 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.52s (niter = 1) global walltime = 320.11s (max_walltime = 323.56s)  [SPH][rank=0]
---------------- t = 0.4912777134428459, dt = 0.0020101313484678324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99974.0 min = 99974.0 factor = 1
 - strategy "round robin" : max = 94975.3 min = 94975.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99974
    max = 99974
    avg = 99974
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.77 us    (3.5%)
   patch tree reduce : 2.03 us    (0.9%)
   gen split merge   : 1.21 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.13 us    (1.0%)
   LB compute        : 196.56 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 5.08 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (69.6%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(7.602373462672191e-08,2.449099224971111e-08,2.9463976219892794e-09) v=(-2.6689048523943423e-07,6.758950480309976e-07,2.5176907193490245e-08) l=(-1.372007618957609e-08,-2.706483669801983e-08,5.789768917726245e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6145508760525775e-07,2.5618422631308745e-07,6.199291863390541e-09)
    sum a = (2.3852447794681098e-18,-4.391018798566293e-18,-1.8211208365967457e-19)
    sum e = 0.04552475444970103
    sum de = 0.000534462041739581
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.24e-03 |
|     force | 7.30e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0032414294185749287 cfl multiplier : 0.5637414136498372       [sph::Model][rank=0]
Info: Timestep 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.0581e+05 | 99973 |      1 | 4.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.897351100605968 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.52s (niter = 1) global walltime = 320.59s (max_walltime = 323.56s)  [SPH][rank=0]
---------------- t = 0.4932878447913137, dt = 0.0032414294185749287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99973.0 min = 99973.0 factor = 1
 - strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99973
    max = 99973
    avg = 99973
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.9%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.90 us    (0.8%)
   LB compute        : 215.46 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.169379118781853e-07,4.1788617097664283e-07,1.0289472181517531e-08)
    sum a = (-3.198396408832238e-18,2.168404344971009e-19,-1.0164395367051604e-19)
    sum e = 0.04552748042027137
    sum de = 0.0005291531473388538
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.01e-03 |
|     force | 9.19e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004006083014197572 cfl multiplier : 0.7091609424332249        [sph::Model][rank=0]
Info: Timestep 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.1946e+05 | 99973 |      1 | 4.555e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.6156303178914 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.51s (niter = 1) global walltime = 321.05s (max_walltime = 323.56s)  [SPH][rank=0]
---------------- t = 0.4965292742098886, dt = 0.003470725790111484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99973.0 min = 99973.0 factor = 1
 - strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99973
    max = 99973
    avg = 99973
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (3.2%)
   patch tree reduce : 2.73 us    (1.2%)
   gen split merge   : 1.30 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.7%)
   LB compute        : 208.09 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 5.09 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.390048779170946e-07,4.5667674008857266e-07,1.1330468526883067e-08)
    sum a = (4.553649124439119e-18,1.8431436932253575e-18,-5.505714157152952e-20)
    sum e = 0.04552954778806239
    sum de = 0.0005234434082424698
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.71e-03 |
|     force | 1.05e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004709570484464914 cfl multiplier : 0.8061072949554834        [sph::Model][rank=0]
Info: Timestep 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.1801e+05 | 99973 |      1 | 4.586e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.246687059787654 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.50s (niter = 1) global walltime = 321.51s (max_walltime = 323.56s)  [SPH][rank=0]
Info: iteration since start : 121                                                     [SPH][rank=0]
Info: time since start : 321.508973836 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 25):
   -> t = 0.5000000000000001 >= 0.5000000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000025.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000025.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 330.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 334.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000025.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 403.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 362.59 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000025.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.030699952000000003 s
Info: compute_slice took 649.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 608.69 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000025.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.012843905000000001 s
Info: compute_slice took 610.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 587.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000025.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 591.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 582.45 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000025.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000025.json
sph::RenderFieldGetter compute custom field took :  0.00932584 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000025.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.5000000000000001 -> 0.5200000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5200000000000001 (current = 0.5000000000000001)
   -> iter = None (current = 120)
   -> walltime = 323.558054818 (current = 331.70720880100004)

Info: evolve_until (target_time = 0.52s, niter_max = -1, max_walltime = 323.56s)      [SPH][rank=0]
---------------- t = 0.5000000000000001, dt = 0.004709570484464914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99973.0 min = 99973.0 factor = 1
 - strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99973
    max = 99973
    avg = 99973
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (3.3%)
   patch tree reduce : 2.44 us    (1.0%)
   gen split merge   : 1.32 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.6%)
   LB compute        : 212.39 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.846146611910788e-07,6.328588905026785e-07,1.5827049102214105e-08)
    sum a = (-3.333921680392926e-18,2.8731357570865868e-18,-7.792703114739563e-20)
    sum e = 0.04553357126556928
    sum de = 0.0005153133320886108
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.94e-03 |
|     force | 1.13e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004941553562328316 cfl multiplier : 0.870738196636989         [sph::Model][rank=0]
Info: Timestep 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.0001e+05 | 99973 |      1 | 4.998e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.91914367516396 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 332.21s > 323.56s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 9):
   -> walltime = 332.20781132300004 >= 323.558054818
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000009.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (53.2%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.sham    [Shamrock Dump][rank=0]
              - took 5.44 ms, bandwidth = 2.35 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 332.20781132300004 -> 362.20781132300004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5200000000000001 (current = 0.5047095704844651)
   -> iter = None (current = 121)
   -> walltime = 362.20781132300004 (current = 332.217404219)

Info: evolve_until (target_time = 0.52s, niter_max = -1, max_walltime = 362.21s)      [SPH][rank=0]
---------------- t = 0.5047095704844651, dt = 0.004941553562328316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99973.0 min = 99973.0 factor = 1
 - strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99973
    max = 99973
    avg = 99973
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (1.8%)
   patch tree reduce : 2.47 us    (1.1%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.8%)
   LB compute        : 212.52 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.97117477987673e-07,6.823711656444107e-07,1.7245694392159284e-08)
    sum a = (2.791820594150174e-18,-8.023096076392733e-18,-2.761327408049019e-19)
    sum e = 0.04553645041373517
    sum de = 0.0005015377351132902
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0505793026374089
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.87720085091977e-07,6.727697607944425e-07,1.9132682082205105e-08)
    sum a = (2.439454888092385e-19,-7.426784881525705e-18,-2.727446090158847e-19)
    sum e = 0.045532640907078266
    sum de = 0.0005019984472721259
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.52e-03 |
|     force | 5.92e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0025243734458477315 cfl multiplier : 0.4569127322123297       [sph::Model][rank=0]
Info: Timestep 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.8191e+05 | 99973 |      1 | 5.496e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.369331161350516 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.15s (niter = 13) global walltime = 332.77s (max_walltime = 362.21s)  [SPH][rank=0]
---------------- t = 0.5096511240467934, dt = 0.0025243734458477315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99973.0 min = 99973.0 factor = 1
 - strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99973
    max = 99973
    avg = 99973
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.67 us    (3.1%)
   patch tree reduce : 2.42 us    (1.0%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.7%)
   LB compute        : 222.41 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (61.0%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.9999999989472883e-07 r=(4.3383700735466886e-08,-1.4809422395027972e-07,6.397129969963811e-09) v=(1.3279015882596663e-06,4.4224182058883894e-07,-4.283367436921468e-08) l=(1.7404770355906187e-08,4.915674781453276e-08,1.161009430394272e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.013102309231948e-07,3.4268322630787705e-07,9.543655259599229e-09)
    sum a = (-9.75781955236954e-19,-5.421010862427522e-20,1.1858461261560205e-20)
    sum e = 0.04552949522152959
    sum de = 0.0004975034696164575
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.99e-03 |
|     force | 8.25e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003985760865032057 cfl multiplier : 0.6379418214748864        [sph::Model][rank=0]
Info: Timestep 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.9715e+05 | 99971 |      1 | 5.071e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.921426778661576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5121754974926411, dt = 0.003985760865032057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99971.0 min = 99971.0 factor = 1
 - strategy "round robin" : max = 94972.4 min = 94972.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99971
    max = 99971
    avg = 99971
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.88 us    (3.0%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 1.25 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.6%)
   LB compute        : 235.05 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (65.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.671120166364391e-07,5.502755626070818e-07,1.5690301455655005e-08)
    sum a = (4.2825985813177425e-18,-2.7647155398380363e-18,2.371692252312041e-20)
    sum e = 0.045532939202963106
    sum de = 0.000490558474658335
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.67e-03 |
|     force | 9.80e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004665994065498266 cfl multiplier : 0.7586278809832576        [sph::Model][rank=0]
Info: Timestep 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.0498e+05 | 99971 |      1 | 4.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.42079578906226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5161612583576732, dt = 0.0038387416423268927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99971.0 min = 99971.0 factor = 1
 - strategy "round robin" : max = 94972.4 min = 94972.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99971
    max = 99971
    avg = 99971
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.19 us    (3.7%)
   patch tree reduce : 2.13 us    (1.0%)
   gen split merge   : 1.26 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.79 us    (0.8%)
   LB compute        : 197.17 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 us    (60.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.390999381987217e-07,5.413707777958228e-07,1.5499853694756642e-08)
    sum a = (-2.3852447794681098e-18,-1.0842021724855044e-17,1.3383120566617945e-19)
    sum e = 0.04553463355585402
    sum de = 0.00047751977155414385
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.03916359010274758
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.491544530183363e-07,5.443308835168683e-07,1.6147230956015336e-08)
    sum a = (-7.860465750519907e-19,-4.391018798566293e-18,1.4399560103323106e-19)
    sum e = 0.04553233064064136
    sum de = 0.00047776198203900426
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.55e-03 |
|     force | 5.42e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.002546780406009115 cfl multiplier : 0.4195426269944192        [sph::Model][rank=0]
Info: Timestep 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.7533e+05 | 99971 |      1 | 5.702e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.236272582023286 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 126                                                     [SPH][rank=0]
Info: time since start : 334.334407536 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 26):
   -> t = 0.5200000000000001 >= 0.5200000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.48 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000026.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000026.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 335.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 336.43 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000026.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 373.57 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 337.49 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000026.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033616112000000004 s
Info: compute_slice took 617.61 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 579.65 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000026.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.015772667 s
Info: compute_slice took 578.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 575.25 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000026.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 573.49 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 572.55 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000026.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000026.json
sph::RenderFieldGetter compute custom field took :  0.007133562 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000026.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.5200000000000001 -> 0.5400000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5400000000000001 (current = 0.5200000000000001)
   -> iter = None (current = 125)
   -> walltime = 362.20781132300004 (current = 344.28156729600005)

Info: evolve_until (target_time = 0.54s, niter_max = -1, max_walltime = 362.21s)      [SPH][rank=0]
---------------- t = 0.5200000000000001, dt = 0.002546780406009115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99971.0 min = 99971.0 factor = 1
 - strategy "round robin" : max = 94972.4 min = 94972.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99971
    max = 99971
    avg = 99971
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.03 us    (3.0%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.6%)
   LB compute        : 239.53 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (76.7%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.9999999989472883e-07 r=(1.3973624359943842e-07,-5.2330258290860714e-08,1.8772832458508945e-09) v=(4.0885996647529587e-07,1.2877742233352124e-06,-3.3819282429296055e-08) l=(-5.421107169039398e-09,3.0437160471923554e-08,1.1597323704171768e-06)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9939841888733734e-07,3.6164459881041344e-07,1.065621104525722e-08)
    sum a = (1.6805133673525319e-18,-4.065758146820642e-18,-1.1011428314305904e-19)
    sum e = 0.045529186919273275
    sum de = 0.0004731729260127606
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.69e-03 |
|     force | 7.92e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0036863742296035762 cfl multiplier : 0.6130284179962794       [sph::Model][rank=0]
Info: Timestep 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.2129e+05 | 99969 |      1 | 4.518e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.29495747888901 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.07s (niter = 9) global walltime = 344.73s (max_walltime = 362.21s)  [SPH][rank=0]
---------------- t = 0.5225467804060092, dt = 0.0036863742296035762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99969.0 min = 99969.0 factor = 1
 - strategy "round robin" : max = 94970.5 min = 94970.5 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99969
    max = 99969
    avg = 99969
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (3.5%)
   patch tree reduce : 2.14 us    (1.0%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.8%)
   LB compute        : 188.89 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (63.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2463362993685745e-07,5.298665900644693e-07,1.5727586158355378e-08)
    sum a = (6.776263578034403e-18,5.854691731421724e-18,-4.404571325722362e-20)
    sum e = 0.04553201767643991
    sum de = 0.00046670910649395606
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.34e-03 |
|     force | 9.58e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004340631667034932 cfl multiplier : 0.7420189453308529        [sph::Model][rank=0]
Info: Timestep 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.2139e+05 | 99969 |      1 | 4.515e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.390143518687136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5262331546356128, dt = 0.004340631667034932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99969.0 min = 99969.0 factor = 1
 - strategy "round robin" : max = 94970.5 min = 94970.5 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99969
    max = 99969
    avg = 99969
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.77 us    (3.9%)
   patch tree reduce : 2.28 us    (1.1%)
   gen split merge   : 1.10 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.8%)
   LB compute        : 174.83 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (65.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.883457314692368e-07,6.358701127879898e-07,1.8890913612641893e-08)
    sum a = (-9.486769009248164e-19,9.215718466126788e-18,-1.9820570965750628e-19)
    sum e = 0.04553484553104663
    sum de = 0.00045894605824594995
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.66e-03 |
|     force | 1.07e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004660851903835878 cfl multiplier : 0.8280126302205687        [sph::Model][rank=0]
Info: Timestep 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.0588e+05 | 99969 |      1 | 4.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.181126490991964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5305737863026477, dt = 0.004660851903835878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99969.0 min = 99969.0 factor = 1
 - strategy "round robin" : max = 94970.5 min = 94970.5 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99969
    max = 99969
    avg = 99969
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (3.8%)
   patch tree reduce : 2.28 us    (1.2%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.9%)
   LB compute        : 169.83 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (64.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.092457014439772e-07,6.975587740095779e-07,2.0746479154500725e-08)
    sum a = (5.692061405548898e-19,-3.198396408832238e-18,-2.371692252312041e-20)
    sum e = 0.04553741725883195
    sum de = 0.0004444541126157111
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04733489511884606
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.846993404714555e-07,7.251154544588433e-07,2.1242363970305827e-08)
    sum a = (-9.75781955236954e-19,4.174178364069192e-18,-1.6940658945086007e-20)
    sum e = 0.04553402401579729
    sum de = 0.00044480454345536294
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.54e-03 |
|     force | 5.72e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0025432155043888546 cfl multiplier : 0.4426708767401896       [sph::Model][rank=0]
Info: Timestep 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.8756e+05 | 99969 |      1 | 5.330e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.480124459014156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5352346382064836, dt = 0.0025432155043888546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99969.0 min = 99969.0 factor = 1
 - strategy "round robin" : max = 94970.5 min = 94970.5 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99969
    max = 99969
    avg = 99969
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (3.0%)
   patch tree reduce : 2.39 us    (1.0%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.89 us    (0.8%)
   LB compute        : 212.05 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (68.3%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-4.3372946063055876e-08,6.703221684444815e-08,5.6623388831421437e-11) v=(-5.606261978988538e-07,-4.627607739641589e-07,1.2443507540941538e-08) l=(8.60044941673332e-09,5.07800046088054e-09,5.76390804464774e-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.9244065899584197 unconverged cnt = 1
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6413308374158707e-07,3.9590592298844084e-07,1.159536914423156e-08)
    sum a = (-3.469446951953614e-18,-6.2341624917916505e-18,-5.082197683525802e-21)
    sum e = 0.04553349539236249
    sum de = 0.0004368872660467338
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.02595422293073899
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5799260987692356e-07,4.078575676007461e-07,1.1672660071526598e-08)
    sum a = (-1.1655173354219173e-18,5.421010862427522e-19,-1.6940658945086007e-21)
    sum e = 0.04553248515876793
    sum de = 0.00043699169170498855
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.79e-03 |
|     force | 4.06e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0017905862341897742 cfl multiplier : 0.3142236255800632       [sph::Model][rank=0]
Info: Timestep 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.2381e+05 | 99968 |      1 | 8.074e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.339600113164789 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5377778537108725, dt = 0.0017905862341897742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99968.0 min = 99968.0 factor = 1
 - strategy "round robin" : max = 94969.6 min = 94969.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99968
    max = 99968
    avg = 99968
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (3.0%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.7%)
   LB compute        : 229.38 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (70.3%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-1.246338716434276e-08,7.893925848295966e-08,-6.468396075267754e-10) v=(-7.177830878269645e-07,-1.5845621158441538e-07,-1.0190423580796952e-10) l=(-1.1063154134626769e-09,4.62834205751759e-09,5.861519964733749e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8133273651858536e-07,2.8741190646160054e-07,8.217366904812748e-09)
    sum a = (-2.846030702774449e-18,5.421010862427522e-20,-3.3881317890172014e-20)
    sum e = 0.04553103536598838
    sum de = 0.0004337556914496626
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.08e-03 |
|     force | 7.01e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003075582783414673 cfl multiplier : 0.5428157503867088        [sph::Model][rank=0]
Info: Timestep 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.2324e+05 | 99967 |      1 | 4.478e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.39528499090403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5395684399450623, dt = 0.00043156005493782956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (3.1%)
   patch tree reduce : 2.05 us    (0.9%)
   gen split merge   : 849.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.8%)
   LB compute        : 209.59 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.312065459305967e-08,6.973032153831202e-08,1.9978811107080343e-09)
    sum a = (-2.439454888092385e-19,2.168404344971009e-19,1.2705494208814505e-19)
    sum e = 0.045530751725396494
    sum de = 0.00043304657557788914
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.94e-03 |
|     force | 8.98e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0039353219209369685 cfl multiplier : 0.6952105002578058       [sph::Model][rank=0]
Info: Timestep 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.0638e+05 | 99967 |      1 | 4.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2074615665964776 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 133                                                     [SPH][rank=0]
Info: time since start : 347.947022144 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 27):
   -> t = 0.5400000000000001 >= 0.5400000000000001
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000027.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000027.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 338.92 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 336.13 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000027.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 372.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 335.97 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.031957212 s
Info: compute_slice took 599.44 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 583.50 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.016057831 s
Info: compute_slice took 585.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 574.39 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000027.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 610.10 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 613.01 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000027.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000027.json
sph::RenderFieldGetter compute custom field took :  0.0073104170000000005 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000027.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.5400000000000001 -> 0.5600000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.56 (current = 0.5400000000000001)
   -> iter = None (current = 132)
   -> walltime = 362.20781132300004 (current = 357.90058338200004)

Info: evolve_until (target_time = 0.56s, niter_max = -1, max_walltime = 362.21s)      [SPH][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0039353219209369685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.80 us    (3.4%)
   patch tree reduce : 2.14 us    (0.9%)
   gen split merge   : 1.46 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.7%)
   LB compute        : 203.19 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 5.42 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (75.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9175439245488035e-07,6.369934376024147e-07,1.8255807839089674e-08)
    sum a = (-3.0899761915836876e-18,9.161508357502512e-18,2.0837010502455788e-19)
    sum e = 0.045534820151384374
    sum de = 0.00042576250686570213
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.46e-03 |
|     force | 1.03e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0044580421024983516 cfl multiplier : 0.7968070001718704       [sph::Model][rank=0]
Info: Timestep 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.2142e+05 | 99967 |      1 | 4.515e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.379514025739184 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.90s (niter = 2) global walltime = 358.35s (max_walltime = 362.21s)  [SPH][rank=0]
---------------- t = 0.5439353219209371, dt = 0.0044580421024983516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.8%)
   patch tree reduce : 2.42 us    (1.0%)
   gen split merge   : 1.48 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.7%)
   LB compute        : 219.88 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2858144794829123e-07,7.331204861831114e-07,2.1063762631359876e-08)
    sum a = (-9.215718466126788e-19,1.6967763999398144e-17,-6.776263578034403e-21)
    sum e = 0.045537385213703034
    sum de = 0.00041760089995901905
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.84e-03 |
|     force | 1.11e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.00483611370060793 cfl multiplier : 0.8645380001145803         [sph::Model][rank=0]
Info: Timestep 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.2133e+05 | 99967 |      1 | 4.517e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.53231940876979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5483933640234354, dt = 0.00483611370060793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.06 us    (4.0%)
   patch tree reduce : 2.18 us    (1.1%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.8%)
   LB compute        : 178.49 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (64.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4584019256024637e-07,8.089554715144092e-07,2.3311186485727208e-08)
    sum a = (-2.8189256484623115e-18,1.2468324983583301e-18,5.590417451878382e-20)
    sum e = 0.0455399339092263
    sum de = 0.00040867437049814473
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.87e-03 |
|     force | 1.17e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004865647845961882 cfl multiplier : 0.909692000076387         [sph::Model][rank=0]
Info: Timestep 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.2116e+05 | 99967 |      1 | 4.520e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.516130437698564 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.45s (niter = 1) global walltime = 359.26s (max_walltime = 362.21s)  [SPH][rank=0]
---------------- t = 0.5532294777240433, dt = 0.004865647845961882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (3.4%)
   patch tree reduce : 2.00 us    (0.9%)
   gen split merge   : 1.11 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.8%)
   LB compute        : 199.33 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.272680151053631e-07,8.281979240455141e-07,2.3944841342504362e-08)
    sum a = (-8.131516293641283e-19,-5.366800753803247e-18,3.6422416731934915e-19)
    sum e = 0.04554194950918553
    sum de = 0.00039968565936134037
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.29e-03 |
|     force | 1.21e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005292465544263035 cfl multiplier : 0.9397946667175914        [sph::Model][rank=0]
Info: Timestep 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.1792e+05 | 99967 |      1 | 4.587e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.183438753454034 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.45s (niter = 1) global walltime = 359.72s (max_walltime = 362.21s)  [SPH][rank=0]
---------------- t = 0.5580951255700052, dt = 0.0019048744299948739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (3.4%)
   patch tree reduce : 2.12 us    (1.0%)
   gen split merge   : 1.27 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.81 us    (0.8%)
   LB compute        : 197.90 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (64.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5870400612811393e-07,3.2961201978118955e-07,9.562778968504837e-09)
    sum a = (-3.7947076036992655e-19,8.131516293641283e-19,1.9989977555201488e-19)
    sum e = 0.04553958525946457
    sum de = 0.0003965181579300206
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.70e-03 |
|     force | 1.23e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.005696882158403559 cfl multiplier : 0.959863111145061         [sph::Model][rank=0]
Info: Timestep 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.2204e+05 | 99967 |      1 | 4.502e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.231788840629033 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.45s (niter = 1) global walltime = 360.17s (max_walltime = 362.21s)  [SPH][rank=0]
Info: iteration since start : 138                                                     [SPH][rank=0]
Info: time since start : 360.167712105 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "vtk_dump" (counter = 7):
   -> t = 0.56 >= 0.56
--------------------------------
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.vtk          [VTK Dump][rank=0]
              - took 5.15 ms, bandwidth = 1.09 GB/s
--------------------------------
[Simulation] Advancing callback "vtk_dump"
   -> t = 0.56 -> 0.64

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5600000000000002 (current = 0.56)
   -> iter = None (current = 137)
   -> walltime = 362.20781132300004 (current = 360.17338495200005)

Info: evolve_until (target_time = 0.56s, niter_max = -1, max_walltime = 362.21s)      [SPH][rank=0]
---------------- t = 0.56, dt = 1.1102230246251565e-16 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (3.1%)
   patch tree reduce : 2.37 us    (1.0%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.01 us    (0.9%)
   LB compute        : 207.35 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (65.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.860465750519907e-19,2.059137094775204e-18,3.3881317890172014e-21)
    sum a = (-1.5178830414797062e-18,-4.228388472693467e-18,1.4568966692773966e-19)
    sum e = 0.045539019499270854
    sum de = 0.00039655869554328983
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 5.78e-03 |
|     force | 1.25e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0057773357564874575 cfl multiplier : 0.9732420740967074       [sph::Model][rank=0]
Info: Timestep 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.1890e+05 | 99967 |      1 | 4.567e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.751690799472142e-13 (tsim/hr)                         [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 360.63s (max_walltime = 362.21s)  [SPH][rank=0]
Info: iteration since start : 139                                                     [SPH][rank=0]
Info: time since start : 360.630768777 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 28):
   -> t = 0.5600000000000002 >= 0.5600000000000002
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.46 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000028.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000028.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 332.54 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 330.21 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 369.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 331.86 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000028.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.033035146 s
Info: compute_slice took 600.92 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 571.91 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000028.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.01572745 s
Info: compute_slice took 574.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 564.99 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000028.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 566.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 563.73 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000028.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.47 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000028.json
sph::RenderFieldGetter compute custom field took :  0.007313287000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000028.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.5600000000000002 -> 0.5800000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5800000000000002 (current = 0.5600000000000002)
   -> iter = None (current = 138)
   -> walltime = 362.20781132300004 (current = 370.45650467800004)

Info: evolve_until (target_time = 0.58s, niter_max = -1, max_walltime = 362.21s)      [SPH][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0057773357564874575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.6%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.82 us    (0.6%)
   LB compute        : 276.38 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (78.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7101918631665496e-07,1.0058557052760973e-06,2.9222765139732872e-08)
    sum a = (-2.3310346708438345e-18,8.51098705401121e-18,-7.115076756936123e-20)
    sum e = 0.04554648477596088
    sum de = 0.0003796248673408149
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.058436161066881945
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2637966466095567e-07,1.0362072496014047e-06,2.977817642916083e-08)
    sum a = (-3.550762114890027e-18,-2.222614453595284e-18,-6.437450399132683e-20)
    sum e = 0.04554126391483064
    sum de = 0.00038014539945433064
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.82e-03 |
|     force | 6.29e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0028186021906662687 cfl multiplier : 0.49108069136556914      [sph::Model][rank=0]
Info: Timestep 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.8733e+05 | 99967 |      1 | 5.336e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.97479928350302 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 370.99s > 362.21s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 10):
   -> walltime = 370.990792719 >= 362.20781132300004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000010.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (52.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.sham    [Shamrock Dump][rank=0]
              - took 5.29 ms, bandwidth = 2.42 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 370.990792719 -> 400.990792719

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5800000000000002 (current = 0.5657773357564876)
   -> iter = None (current = 139)
   -> walltime = 400.990792719 (current = 370.99991493100003)

Info: evolve_until (target_time = 0.58s, niter_max = -1, max_walltime = 400.99s)      [SPH][rank=0]
---------------- t = 0.5657773357564876, dt = 0.0028186021906662687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99967.0 min = 99967.0 factor = 1
 - strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99967
    max = 99967
    avg = 99967
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (1.7%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 824.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.7%)
   LB compute        : 226.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (67.7%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-5.751126479627288e-08,5.544074511172304e-08,-4.2899788249088374e-10) v=(-4.4849663776064025e-07,-5.694819804201462e-07,5.679086651857023e-09) l=(6.868860658379204e-10,5.169154432903704e-09,5.759424394027499e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0749441926776776e-07,5.056466426019887e-07,1.4560613188510987e-08)
    sum a = (-3.686287386450715e-18,-7.209944447028604e-18,1.2027867851011065e-19)
    sum e = 0.04554092217474071
    sum de = 0.0003747978239571121
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.77e-03 |
|     force | 8.46e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003765833896270974 cfl multiplier : 0.6607204609103795        [sph::Model][rank=0]
Info: Timestep 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.2258e+05 | 99966 |      1 | 4.491e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.592834592697812 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.19s (niter = 16) global walltime = 371.45s (max_walltime = 400.99s)  [SPH][rank=0]
---------------- t = 0.5685959379471539, dt = 0.003765833896270974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99966.0 min = 99966.0 factor = 1
 - strategy "round robin" : max = 94967.7 min = 94967.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99966
    max = 99966
    avg = 99966
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.7%)
   patch tree reduce : 2.48 us    (1.0%)
   gen split merge   : 985.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.7%)
   LB compute        : 227.77 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 us    (65.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.674038091036166e-07,6.806966543148294e-07,1.961390974700232e-08)
    sum a = (-1.0842021724855044e-18,-9.974659986866641e-18,-8.639736061993863e-20)
    sum e = 0.04554329283293588
    sum de = 0.00036460435582231615
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.03850045528886968
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4375319922887535e-07,6.805688839202931e-07,1.9851482487618218e-08)
    sum a = (-1.1655173354219173e-18,-4.119968255444917e-18,-7.962109704190423e-20)
    sum e = 0.04554107566572426
    sum de = 0.0003647813242196558
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.19e-03 |
|     force | 4.95e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0021944089234292763 cfl multiplier : 0.38690682030345985      [sph::Model][rank=0]
Info: Timestep 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.8770e+05 | 99966 |      1 | 5.326e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.455302292908225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5723617718434248, dt = 0.0021944089234292763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99966.0 min = 99966.0 factor = 1
 - strategy "round robin" : max = 94967.7 min = 94967.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99966
    max = 99966
    avg = 99966
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (3.0%)
   patch tree reduce : 2.28 us    (1.0%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.79 us    (0.7%)
   LB compute        : 215.73 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (70.9%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-6.453413848193712e-08,-4.696356906733067e-08,-1.991857376252187e-10) v=(4.604365572176953e-07,-5.661854933951024e-07,9.184655017990747e-10) l=(-1.5893324378307102e-09,-2.813695162006215e-10,5.81268105461924e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4191777710520644e-07,3.959377984062248e-07,1.1500706641209484e-08)
    sum a = (-2.222614453595284e-18,1.3173056395698879e-17,1.8973538018496328e-19)
    sum e = 0.04553992679615576
    sum de = 0.0003606691854530396
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.33e-03 |
|     force | 7.56e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0033269324207534767 cfl multiplier : 0.5912712135356398       [sph::Model][rank=0]
Info: Timestep 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.0972e+05 | 99965 |      1 | 4.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.573717775902562 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5745561807668541, dt = 0.0033269324207534767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99965.0 min = 99965.0 factor = 1
 - strategy "round robin" : max = 94966.8 min = 94966.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99965
    max = 99965
    avg = 99965
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.16 us    (3.6%)
   patch tree reduce : 2.62 us    (1.2%)
   gen split merge   : 1.13 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.92 us    (0.9%)
   LB compute        : 199.94 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (66.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.080582275178276e-07,6.04394871460323e-07,1.7672759067609986e-08)
    sum a = (-1.3552527156068805e-19,6.830473686658678e-18,-2.710505431213761e-20)
    sum e = 0.045542089216765225
    sum de = 0.0003513959802573153
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.03390259538532369
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.071993004217266e-07,6.089850938587887e-07,1.7809800100177357e-08)
    sum a = (1.6805133673525319e-18,4.716279450311944e-18,-2.202285662861181e-20)
    sum e = 0.045540359027020694
    sum de = 0.0003515223338693124
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.03e-03 |
|     force | 4.65e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0020253594671921843 cfl multiplier : 0.36375707117854655      [sph::Model][rank=0]
Info: Timestep 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.8790e+05 | 99965 |      1 | 5.320e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.512735751224646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5778831131876075, dt = 0.0020253594671921843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99965.0 min = 99965.0 factor = 1
 - strategy "round robin" : max = 94966.8 min = 94966.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99965
    max = 99965
    avg = 99965
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (3.7%)
   patch tree reduce : 2.05 us    (1.0%)
   gen split merge   : 797.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 174.02 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (4.3%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(7.995131018884077e-08,1.5783975585458075e-10,-4.980865045746446e-10) v=(-4.191030131644427e-08,7.269920682673562e-07,-8.524908227539032e-09) l=(3.605543763989972e-09,7.042636367942598e-09,5.809825265716494e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.266160052730683e-07,3.7114651765647404e-07,1.086180717419383e-08)
    sum a = (9.622294280808852e-19,-8.131516293641283e-18,2.829090043829363e-19)
    sum e = 0.04553902325858002
    sum de = 0.0003477736627024375
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.19e-03 |
|     force | 7.36e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003185549311841313 cfl multiplier : 0.5758380474523643        [sph::Model][rank=0]
Info: Timestep 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.2345e+05 | 99964 |      1 | 4.474e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29835468652494 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5799084726547997, dt = 9.152734520045946e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99964.0 min = 99964.0 factor = 1
 - strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99964
    max = 99964
    avg = 99964
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (3.4%)
   patch tree reduce : 2.09 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.7%)
   LB compute        : 203.06 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5131790291352255e-09,1.683234504959114e-08,4.932072906295638e-10)
    sum a = (-2.981555974335137e-19,-1.702197410802242e-17,-4.573977915173222e-19)
    sum e = 0.0455384152570555
    sum de = 0.0003476743198131746
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.97e-03 |
|     force | 9.16e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.003967690284513628 cfl multiplier : 0.7172253649682429        [sph::Model][rank=0]
Info: Timestep 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.2349e+05 | 99964 |      1 | 4.473e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7366740977908657 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 146                                                     [SPH][rank=0]
Info: time since start : 373.888297137 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 29):
   -> t = 0.5800000000000002 >= 0.5800000000000002
--------------------------------
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000029.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.55 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000029.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 341.04 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 341.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000029.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 381.97 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 342.66 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000029.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.031352415 s
Info: compute_slice took 612.14 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 566.22 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000029.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.014741134000000001 s
Info: compute_slice took 577.79 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 570.10 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000029.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 567.48 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 571.29 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000029.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.45 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000029.json
sph::RenderFieldGetter compute custom field took :  0.006696088 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000029.npy
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.5800000000000002 -> 0.6000000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 0.6 (current = 0.5800000000000002)
   -> iter = None (current = 145)
   -> walltime = 400.990792719 (current = 383.85897298900005)

Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = 400.99s)      [SPH][rank=0]
---------------- t = 0.5800000000000002, dt = 0.003967690284513628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99964.0 min = 99964.0 factor = 1
 - strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99964
    max = 99964
    avg = 99964
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.18 us    (3.6%)
   patch tree reduce : 1.85 us    (0.8%)
   gen split merge   : 1.36 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 199.94 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (66.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.386275658659121e-07,7.298298308255854e-07,2.1386732577913704e-08)
    sum a = (1.951563910473908e-18,1.6263032587282567e-19,1.1689054672109345e-19)
    sum e = 0.04554223165314737
    sum de = 0.0003402689391134614
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.43e-03 |
|     force | 1.04e-02 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004434243217781757 cfl multiplier : 0.8114835766454952        [sph::Model][rank=0]
Info: Timestep 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.2092e+05 | 99964 |      1 | 4.525e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.567277289078277 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.08s (niter = 9) global walltime = 384.31s (max_walltime = 400.99s)  [SPH][rank=0]
---------------- t = 0.5839676902845138, dt = 0.004434243217781757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99964.0 min = 99964.0 factor = 1
 - strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99964
    max = 99964
    avg = 99964
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (3.4%)
   patch tree reduce : 2.28 us    (1.1%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.7%)
   LB compute        : 183.59 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4878240290884725e-07,8.227510857580228e-07,2.420281193308837e-08)
    sum a = (9.486769009248164e-20,-6.830473686658678e-18,-1.2874900798265365e-19)
    sum e = 0.045544335724717534
    sum de = 0.0003290940315181993
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.04523947118601904
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1730111577837705e-07,8.223406612875691e-07,2.505424086409622e-08)
    sum a = (-1.3145951341386741e-18,5.7462715141731735e-18,-1.3044307387716225e-19)
    sum e = 0.04554126465672474
    sum de = 0.0003293339469854887
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.46e-03 |
|     force | 5.58e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0024585958177237364 cfl multiplier : 0.4371611922151651       [sph::Model][rank=0]
Info: Timestep 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.8644e+05 | 99964 |      1 | 5.362e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.773351775969683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5884019335022955, dt = 0.0024585958177237364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99964.0 min = 99964.0 factor = 1
 - strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99964
    max = 99964
    avg = 99964
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (3.7%)
   patch tree reduce : 2.34 us    (1.1%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.8%)
   LB compute        : 188.94 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 us    (65.3%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(-6.560876021455712e-08,-4.550589447451233e-08,3.057546490697589e-09) v=(4.4699911076874304e-07,-5.810382994251362e-07,1.2876474432228116e-08) l=(1.1847146479623963e-08,2.2190510129467807e-08,5.844802721177195e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.202925435363168e-07,4.5559544855806843e-07,1.3786030051610688e-08)
    sum a = (-2.3852447794681098e-18,-4.174178364069192e-18,-6.776263578034403e-21)
    sum e = 0.045540294663405076
    sum de = 0.00032252093231259954
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.025135750901080407
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.19356839323176e-07,4.522827790474425e-07,1.3903615308726009e-08)
    sum a = (-3.781155076543197e-18,-1.6642503347652493e-17,-1.1858461261560205e-20)
    sum e = 0.04553934970801155
    sum de = 0.0003225995533670303
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.85e-03 |
|     force | 3.98e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0018543425917194232 cfl multiplier : 0.3123870640717217       [sph::Model][rank=0]
Info: Timestep 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.8818e+05 | 99963 |      1 | 5.312e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.661922373233057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5908605293200193, dt = 0.0018543425917194232 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99963.0 min = 99963.0 factor = 1
 - strategy "round robin" : max = 94964.8 min = 94964.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99963
    max = 99963
    avg = 99963
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (3.0%)
   patch tree reduce : 2.17 us    (0.9%)
   gen split merge   : 1.23 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.98 us    (0.8%)
   LB compute        : 203.24 us  (82.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (77.8%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(5.332990764619905e-08,-5.9596160957130155e-08,-9.49548874725227e-10) v=(5.072306953360714e-07,4.949864171658792e-07,-7.729136683549202e-09) l=(9.342156212559664e-09,-6.585413083320982e-10,5.660191656760019e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.052953155214594e-08,3.410281283152616e-07,1.0544834159707373e-08)
    sum a = (-5.963111948670274e-19,-6.559423143537302e-18,-2.405573570202213e-19)
    sum e = 0.04553790920755885
    sum de = 0.00031665890388111936
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.018966433611358708
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.67200417670541e-08,3.4798746283589736e-07,1.050248449677853e-08)
    sum a = (-8.131516293641283e-20,1.6263032587282567e-18,-2.202285662861181e-19)
    sum e = 0.04553737009909921
    sum de = 0.00031670932332735624
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 1.60e-03 |
|     force | 3.45e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0016044120381772638 cfl multiplier : 0.27079568802390724      [sph::Model][rank=0]
Info: Timestep 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.8898e+05 | 99962 |      1 | 5.290e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.62011690618937 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5927148719117388, dt = 0.0016044120381772638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99962.0 min = 99962.0 factor = 1
 - strategy "round robin" : max = 94963.9 min = 94963.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99962
    max = 99962
    avg = 99962
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (3.4%)
   patch tree reduce : 2.23 us    (1.0%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.8%)
   LB compute        : 201.69 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (66.7%)
Info: sink accretion :                                                          [sph::Sink][rank=0]
    id 0 deltas : mass=1.0000000005838672e-07 r=(2.1704280337606584e-09,7.989693105394992e-08,-5.574873691650058e-10) v=(-7.178477077265379e-07,-1.676578330292827e-08,-1.1665500504212276e-08) l=(-9.407417389465958e-09,4.2537434589475975e-09,5.73004776613776e-07)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.482108674237964e-08,3.0134673379561804e-07,9.07698824305611e-09)
    sum a = (-6.776263578034403e-20,1.3660947373317356e-17,7.115076756936123e-20)
    sum e = 0.04553563655613763
    sum de = 0.00031384651288674604
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 3.02e-03 |
|     force | 6.55e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0030212467844228865 cfl multiplier : 0.5138637920159382       [sph::Model][rank=0]
Info: Timestep 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.2395e+05 | 99961 |      1 | 4.464e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.940002579221662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5943192839499161, dt = 0.0030212467844228865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99961.0 min = 99961.0 factor = 1
 - strategy "round robin" : max = 94962.9 min = 94962.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99961
    max = 99961
    avg = 99961
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (3.2%)
   patch tree reduce : 2.20 us    (1.0%)
   gen split merge   : 1.35 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.7%)
   LB compute        : 199.44 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (62.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3626642580773945e-07,5.685345609538029e-07,1.7186960450435757e-08)
    sum a = (2.574980159653073e-18,8.456776945386935e-18,-2.625802136488331e-19)
    sum e = 0.04553759449615032
    sum de = 0.0003084819531904568
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 4.07e-03 |
|     force | 8.62e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.004073610932588379 cfl multiplier : 0.6759091946772923        [sph::Model][rank=0]
Info: Timestep 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.1241e+05 | 99961 |      1 | 4.706e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.111714054897952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5973405307343389, dt = 0.002659469265661074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 99961.0 min = 99961.0 factor = 1
 - strategy "round robin" : max = 94962.9 min = 94962.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99961
    max = 99961
    avg = 99961
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (3.5%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.7%)
   LB compute        : 222.76 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (63.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1158280528875619e-07,5.029274875514821e-07,1.5251603815966716e-08)
    sum a = (2.8189256484623115e-18,-9.269928574751063e-18,-1.4568966692773966e-19)
    sum e = 0.04553808978402717
    sum de = 0.00029812693369078827
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0272389623140136
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0918283432375287e-07,5.040036132951563e-07,1.5193885736400733e-08)
    sum a = (2.1141942363467336e-18,-3.577867169202165e-18,-1.5585406229479126e-19)
    sum e = 0.04553698286310903
    sum de = 0.00029818963749526743
Info: CFL detail :                                                             [sph::Model][rank=0]
+===========+==========+
|    key    |  value   |
+===========+==========+
|   courant | 2.34e-03 |
|     force | 5.00e-03 |
| sink_sink |      inf |
+-----------+----------+
Info: cfl dt = 0.0023375053319057014 cfl multiplier : 0.3919697315590975       [sph::Model][rank=0]
Info: Timestep 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.7426e+05 | 99961 |      1 | 5.736e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.690170416188746 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 153                                                     [SPH][rank=0]
Info: time since start : 387.402475711 (s)                                            [SPH][rank=0]

Plot generation#

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

667 import matplotlib
668 import matplotlib.pyplot as plt
669
670 for analysis_module in sim.analysis_modules:
671     # if it has a render_all function, call it
672     if hasattr(analysis_module, "render_all"):
673         analysis_module.render_all(
674             **analysis_module.render_args,
675         )
676
677
678 def profile_plot_func(iplot, data):
679
680     data = data.item()
681
682     bin_edges_x1d = data["bin_edges_x1d"]
683     bin_edges_x = data["bin_edges_x"]
684     bin_edges_y = data["bin_edges_y"]
685     histo = data["histo"]
686     histo_convolve = data["histo_convolve"]
687     histo_2d = data["histo_2d"]
688     time = data["time"]
689
690     bin_center = (bin_edges_x1d[:-1] + bin_edges_x1d[1:]) / 2
691
692     plt.figure(dpi=150)
693
694     plt.pcolormesh(
695         bin_edges_x, bin_edges_y, histo_2d, norm="log", cmap="Greys", vmin=1, vmax=2, shading="auto"
696     )
697
698     plt.plot(bin_center, histo)
699     plt.plot(bin_center, histo_convolve)
700     plt.xlabel("r")
701     plt.ylabel("density")
702
703     plt.xscale("log")
704     plt.yscale("log")
705
706     plt.ylim(1e-6, 1e-3)
707
708     text = f"t = {time:0.3f}"
709     from matplotlib.offsetbox import AnchoredText
710
711     anchored_text = AnchoredText(text, loc=2)
712     plt.gca().add_artist(anchored_text)
713
714     plt.savefig(profile_plot.analysis_prefix + f"{iplot:07}.png")
715     plt.close()
716
717
718 profile_plot.render_all(profile_plot_func)
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000029.png

Make gif for the doc (plot_to_gif.py)#

Convert PNG sequence to Image sequence in mpl

727 render_gif = True

Do it for rho integ

732 if render_gif:
733     ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
734     if ani is not None:
735         plt.show()

Same but in hollywood

740 if render_gif:
741     ani = column_density_plot_hollywood.render_gif(
742         gif_filename="rho_integ_hollywood.gif", save_animation=True
743     )
744     if ani is not None:
745         plt.show()

For the vertical density plot

749 if render_gif and shamrock.sys.world_rank() == 0:
750     ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
751     if ani is not None:
752         plt.show()

Make a gif from the plots

757 if render_gif and shamrock.sys.world_rank() == 0:
758     ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
759     if ani is not None:
760         plt.show()

Make a gif from the plots

765 if render_gif and shamrock.sys.world_rank() == 0:
766     ani = relative_azy_velocity_slice_plot.render_gif(
767         gif_filename="relative_azy_velocity_slice.gif", save_animation=True
768     )
769     if ani is not None:
770         plt.show()

Make a gif from the plots

774 if render_gif and shamrock.sys.world_rank() == 0:
775     ani = vertical_shear_gradient_slice_plot.render_gif(
776         gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
777     )
778     if ani is not None:
779         plt.show()

Make a gif from the plots

783 if render_gif and shamrock.sys.world_rank() == 0:
784     ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
785     if ani is not None:
786         plt.show()

Make a gif from the plots

790 if render_gif and shamrock.sys.world_rank() == 0:
791     ani = column_particle_count_plot.render_gif(
792         gif_filename="particle_count.gif", save_animation=True
793     )
794     if ani is not None:
795         plt.show()

Make a gif from the plots

799 if render_gif and shamrock.sys.world_rank() == 0:
800     ani = profile_plot.render_gif(
801         profile_plot.analysis_prefix + "*.png",
802         gif_filename="density_profile.gif",
803         save_animation=True,
804     )
805     if ani is not None:
806         plt.show()

helper function to load data from JSON files

811 def load_data_from_json(filename, key):
812     filepath = os.path.join(analysis_folder, filename)
813     with open(filepath, "r") as fp:
814         data = json.load(fp)[key]
815     t = [d["t"] for d in data]
816     values = [d[key] for d in data]
817     return t, values

load the json file for barycenter

822 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
823 barycenter_x = [d[0] for d in barycenter]
824 barycenter_y = [d[1] for d in barycenter]
825 barycenter_z = [d[2] for d in barycenter]
826
827 plt.figure(figsize=(8, 5), dpi=200)
828
829 plt.plot(t, barycenter_x)
830 plt.plot(t, barycenter_y)
831 plt.plot(t, barycenter_z)
832 plt.xlabel("t")
833 plt.ylabel("barycenter")
834 plt.legend(["x", "y", "z"])
835 plt.savefig(analysis_folder + "barycenter.png")
836 plt.show()
run circular disc sink

load the json file for disc_mass

840 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
841
842 plt.figure(figsize=(8, 5), dpi=200)
843
844 plt.plot(t, disc_mass)
845 plt.xlabel("t")
846 plt.ylabel("disc_mass")
847 plt.savefig(analysis_folder + "disc_mass.png")
848 plt.show()
run circular disc sink

load the json file for total_momentum

852 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
853 total_momentum_x = [d[0] for d in total_momentum]
854 total_momentum_y = [d[1] for d in total_momentum]
855 total_momentum_z = [d[2] for d in total_momentum]
856
857 plt.figure(figsize=(8, 5), dpi=200)
858
859 plt.plot(t, total_momentum_x)
860 plt.plot(t, total_momentum_y)
861 plt.plot(t, total_momentum_z)
862 plt.xlabel("t")
863 plt.ylabel("total_momentum")
864 plt.legend(["x", "y", "z"])
865 plt.savefig(analysis_folder + "total_momentum.png")
866 plt.show()
run circular disc sink

load the json file for total_momentum

871 t, angular_momentum = load_data_from_json("angular_momentum.json", "angular_momentum")
872 angular_momentum_x = [d[0] - angular_momentum[0][0] for d in angular_momentum]
873 angular_momentum_y = [d[1] - angular_momentum[0][1] for d in angular_momentum]
874 angular_momentum_z = [d[2] - angular_momentum[0][2] for d in angular_momentum]
875
876
877 plt.figure(figsize=(8, 5), dpi=200)
878
879 plt.plot(t, angular_momentum_x)
880 plt.plot(t, angular_momentum_y)
881 plt.plot(t, angular_momentum_z)
882 plt.xlabel("t")
883 plt.ylabel(r"$\mathrm{L} - \mathrm{L}(t=0)$")
884 plt.legend(["x", "y", "z"])
885 plt.savefig(analysis_folder + "angular_momentum.png")
run circular disc sink

load the json file for energies

889 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
890 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
891
892 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
893
894 plt.figure(figsize=(8, 5), dpi=200)
895 plt.plot(t, potential_energy)
896 plt.plot(t, kinetic_energy)
897 plt.plot(t, total_energy)
898 plt.xlabel("t")
899 plt.ylabel("energy")
900 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
901 plt.savefig(analysis_folder + "energies.png")
902 plt.show()
run circular disc sink

load the json file for sinks

906 t, sinks = load_data_from_json("sinks.json", "sinks")
907
908 sinks_x = [d[0]["pos"][0] for d in sinks]
909 sinks_y = [d[0]["pos"][1] for d in sinks]
910 sinks_z = [d[0]["pos"][2] for d in sinks]
911
912 plt.figure(figsize=(8, 5), dpi=200)
913 plt.plot(t, sinks_x, label="sink 0 (x)")
914 plt.plot(t, sinks_y, label="sink 0 (y)")
915 plt.plot(t, sinks_z, label="sink 0 (z)")
916 plt.xlabel("t")
917 plt.ylabel("sink position")
918 plt.legend()
919 plt.savefig(analysis_folder + "sinks.png")
920 plt.show()
run circular disc sink

Sink angular momentum

924 t, sinks = load_data_from_json("sinks.json", "sinks")
925
926 sinks_lx = np.array([d[0]["angular_momentum"][0] for d in sinks])
927 sinks_ly = np.array([d[0]["angular_momentum"][1] for d in sinks])
928 sinks_lz = np.array([d[0]["angular_momentum"][2] for d in sinks])
929
930
931 plt.figure(figsize=(8, 5), dpi=200)
932 plt.plot(t, sinks_lx, label="sink 0 (l_x)")
933 plt.plot(t, sinks_ly, label="sink 0 (l_y)")
934 plt.plot(t, sinks_lz, label="sink 0 (l_z)")
935 plt.xlabel("t")
936 plt.ylabel("sink spin")
937 plt.legend()
938 plt.savefig(analysis_folder + "sink_angular_momentum.png")
939 plt.show()
run circular disc sink

Sink to barycenter distance

943 t, sinks = load_data_from_json("sinks.json", "sinks")
944 _, barycenter = load_data_from_json("barycenter.json", "barycenter")
945
946 barycenter_x = np.array([d[0] for d in barycenter])
947 barycenter_y = np.array([d[1] for d in barycenter])
948 barycenter_z = np.array([d[2] for d in barycenter])
949
950 sinks_x = np.array([d[0]["pos"][0] for d in sinks])
951 sinks_y = np.array([d[0]["pos"][1] for d in sinks])
952 sinks_z = np.array([d[0]["pos"][2] for d in sinks])
953
954
955 plt.figure(figsize=(8, 5), dpi=200)
956 plt.plot(t, sinks_x - barycenter_x, label="sink 0 (x)")
957 plt.plot(t, sinks_y - barycenter_y, label="sink 0 (y)")
958 plt.plot(t, sinks_z - barycenter_z, label="sink 0 (z)")
959 plt.xlabel("t")
960 plt.ylabel("sink pos - barycenter pos")
961 plt.legend()
962 plt.savefig(analysis_folder + "sink_to_barycenter_distance.png")
963 plt.show()
run circular disc sink

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

968 perf_analysis.plot_perf_history(close_plots=False)
969 plt.show()
  • run circular disc sink
  • run circular disc sink
  • run circular disc sink
  • run circular disc sink
  • run circular disc sink
  • run circular disc sink
  • run circular disc sink
  • run circular disc sink
Plotting perf history from _to_trash/circular_disc_sink_100000/analysis/perf_history.json

Total running time of the script: (11 minutes 30.780 seconds)

Estimated memory usage: 2507 MB

Gallery generated by Sphinx-Gallery