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

Setup units

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

List parameters

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

Create the dump directory if it does not exist

144 if shamrock.sys.world_rank() == 0:
145     os.makedirs(sim_folder, exist_ok=True)
146     os.makedirs(dump_folder, exist_ok=True)
147     os.makedirs(analysis_folder, exist_ok=True)
148     os.makedirs(plot_folder, exist_ok=True)

Utility functions and quantities deduced from the base one

153 # Deduced quantities
154 pmass = disc_mass / Npart
155
156 bsize = rout * 2
157 bmin = (-bsize, -bsize, -bsize)
158 bmax = (bsize, bsize, bsize)
159
160 cs0 = cs_profile(r0)
161
162
163 def rot_profile(r):
164     return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
165
166
167 def H_profile(r):
168     H = cs_profile(r) / omega_k(r)
169     # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
170     fact = 1.0
171     return fact * H

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

Attach a SPH model to the context

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

Dump handling

192 def get_vtk_dump_name(idump):
193     return dump_prefix + f"{idump:07}" + ".vtk"
194
195
196 def get_ph_dump_name(idump):
197     return dump_prefix + f"{idump:07}" + ".phdump"
198
199
200 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)

Load the last dump if it exists, setup otherwise

206 def setup_model():
207     global disc_mass
208
209     # Generate the default config
210     cfg = model.gen_default_config()
211     cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
212     cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
213
214     cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize)  # kill particles outside the simulation box
215
216     cfg.set_units(codeu)
217     cfg.set_particle_mass(pmass)
218     # Set the CFL
219     cfg.set_cfl_cour(C_cour)
220     cfg.set_cfl_force(C_force)
221
222     # Enable this to debug the neighbor counts
223     # cfg.set_show_neigh_stats(True)
224
225     # Standard way to set the smoothing length (e.g. Price et al. 2018)
226     cfg.set_smoothing_length_density_based()
227
228     cfg.set_save_dt_to_fields(True)
229
230     # Standard density based smoothing lenght but with a neighbor count limit
231     # Use it if you have large slowdowns due to giant particles
232     # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
233     # cfg.set_smoothing_length_density_based_neigh_lim(500)
234
235     cfg.set_save_dt_to_fields(True)
236
237     # Set the solver config to be the one stored in cfg
238     model.set_solver_config(cfg)
239
240     # Print the solver config
241     model.get_current_config().print_status()
242
243     # Init the scheduler & fields
244     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
245
246     # Set the simulation box size
247     model.resize_simulation_box(bmin, bmax)
248
249     # Create the setup
250
251     setup = model.get_setup()
252     gen_disc = setup.make_generator_disc_mc(
253         part_mass=pmass,
254         disc_mass=disc_mass,
255         r_in=rin,
256         r_out=rout,
257         sigma_profile=sigma_profile,
258         H_profile=H_profile,
259         rot_profile=rot_profile,
260         cs_profile=cs_profile,
261         random_seed=666,
262     )
263
264     # Print the dot graph of the setup
265     print(gen_disc.get_dot())
266
267     # Apply the setup
268     setup.apply_setup(gen_disc)
269
270     # correct the momentum and barycenter of the disc to 0
271     analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
272     total_momentum = analysis_momentum.get_total_momentum()
273
274     if shamrock.sys.world_rank() == 0:
275         print(f"disc momentum = {total_momentum}")
276
277     model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
278
279     # Correct the barycenter before adding the sink
280     analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
281     barycenter, disc_mass = analysis_barycenter.get_barycenter()
282
283     if shamrock.sys.world_rank() == 0:
284         print(f"disc barycenter = {barycenter}")
285
286     model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
287
288     total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
289
290     if shamrock.sys.world_rank() == 0:
291         print(f"disc momentum after correction = {total_momentum}")
292
293     barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
294
295     if shamrock.sys.world_rank() == 0:
296         print(f"disc barycenter after correction = {barycenter}")
297
298     if not np.allclose(total_momentum, 0.0):
299         raise RuntimeError("disc momentum is not 0")
300     if not np.allclose(barycenter, 0.0):
301         raise RuntimeError("disc barycenter is not 0")
302
303     # now that the barycenter & momentum are 0, we can add the sink
304     model.add_sink(center_mass, (0, 0, 0), (0, 0, 0), center_racc)
305
306     # Run a single step to init the integrator and smoothing length of the particles
307     # Here the htolerance is the maximum factor of evolution of the smoothing length in each
308     # Smoothing length iterations, increasing it affect the performance negatively but increse the
309     # convergence rate of the smoothing length
310     # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
311     # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
312     # more slowly at the first timestep
313
314     model.change_htolerances(coarse=1.3, fine=1.1)
315     model.timestep()
316     model.change_htolerances(coarse=1.1, fine=1.1)
317
318
319 dump_helper.load_last_dump_or(setup_model)
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_AV": 0.0125,
            "alpha_u": 1.0,
            "av_type": "constant_disc",
            "beta_AV": 2.0
        },
        "boundary_config": {
            "bc_type": "free"
        },
        "cfl_config": {
            "cfl_cour": 0.3,
            "cfl_force": 0.25,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs0": 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"
        },
        "particle_killing": [
            {
                "center": [
                    0.0,
                    0.0,
                    0.0
                ],
                "radius": 20.0,
                "type": "sphere"
            }
        ],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": true,
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 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
        },
        "use_two_stage_search": true
    }
]
------------------------------------
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}

SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 ) rate = 2.653332e+05 N.s^-1
SPH setup: the generation step took : 0.38597531700000004 s
SPH setup: final particle count = 100000 begining injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.12 us   (67.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (0.1%)
   patch tree reduce : 1713.00 ns (0.1%)
   gen split merge   : 721.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.0%)
   LB compute        : 2.03 ms    (98.7%)
   LB move op cnt    : 0
   LB apply          : 16.18 us   (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (64.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (0.4%)
   patch tree reduce : 531.00 ns  (0.1%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.1%)
   LB compute        : 436.01 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (0.2%)
   patch tree reduce : 490.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 331.00 ns  (0.0%)
   LB compute        : 945.15 us  (99.2%)
   LB move op cnt    : 0
   LB apply          : 1873.00 ns (0.2%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected       100000 / 100000 => 100.0% | ranks with patchs = 1 / 1  <- global loop ->
SPH setup: the injection step took : 0.018402603 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   0.7% 0.0% |     1.16 GB |     5.04 MB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.427716282 s
disc momentum = (-5.810951242481266e-05, 2.0681541048167586e-06, 0.0)
disc barycenter = (-0.01520772358774451, 0.015657581335007033, -0.0002545016792721661)
disc momentum after correction = (2.710505431213761e-19, -6.4543910580777686e-18, 0.0)
disc barycenter after correction = (6.451002926288751e-16, 2.6698478497455547e-16, 8.639736061993863e-18)
---------------- t = 0, dt = 0 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 436.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.37741680646819326 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.49064184840865127 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.6378344029312467 unconverged cnt = 99997
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.8291847238106208 unconverged cnt = 99992
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 99984
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 99961
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 99871
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 99438
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 92881
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 46416
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 1511
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.796696207951754e-18,-1.7755041881173382e-17,0)
    sum a = (1.1424780392566003e-17,-6.071532165918825e-18,-1.3891340334970526e-19)
    sum e = 0.05000297062453884
    sum de = 1.0112079034925532e-05
Info: CFL hydro = 7.833195568092592e-05 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 7.833195568092592e-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.1111e+04 | 100000 |      1 | 3.214e+00 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

On the fly analysis

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

Evolve the simulation

498 model.solver_logs_reset_cumulated_step_time()
499 model.solver_logs_reset_step_count()
500
501 t_start = model.get_time()
502
503 idump = 0
504 iplot = 0
505 istop = 0
506 for ttarg in t_stop:
507     if ttarg >= t_start:
508         model.evolve_until(ttarg)
509
510         if istop % dump_freq_stop == 0:
511             model.do_vtk_dump(get_vtk_dump_name(idump), True)
512             dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
513
514             # dump = model.make_phantom_dump()
515             # dump.save_dump(get_ph_dump_name(idump))
516
517         if istop % plot_freq_stop == 0:
518             analysis(iplot)
519
520     if istop % dump_freq_stop == 0:
521         idump += 1
522
523     if istop % plot_freq_stop == 0:
524         iplot += 1
525
526     istop += 1
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 4092.087695916 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.vtk          [VTK Dump][rank=0]
              - took 26.87 ms, bandwidth = 198.79 MB/s
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     : 9.27 us    (33.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.sham    [Shamrock Dump][rank=0]
              - took 35.12 ms, bandwidth = 347.77 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1998.08 ms                           [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 1992.11 ms                           [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 713.12 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.52 ms                                   [sph::CartesianRender][rank=0]
/__w/Shamrock/Shamrock/.pyvenv/lib/python3.12/site-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 706.08 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.69 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.077391317 s
Info: compute_slice took 1293.74 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.69 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.019331614 s
Info: compute_slice took 1231.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1223.44 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 1219.72 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.68 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 2.01 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
Warning: step count is 0, skipping save of perf history
---------------- t = 0, dt = 7.833195568092592e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.4%)
   patch tree reduce : 3.74 us    (0.8%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 442.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 15.86 us   (3.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.119132441645607e-09,-4.536887146883991e-09,-7.531218408353538e-10)
    sum a = (5.759824041329242e-19,3.916680348103885e-18,-3.049318610115481e-20)
    sum e = 0.050002973171415624
    sum de = 1.0476986723717366e-05
Info: CFL hydro = 0.0026632979621559623 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0026632979621559623 cfl multiplier : 0.34                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6612e+05 | 100000 |      1 | 6.020e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4684607823872109 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.833195568092592e-05, dt = 0.0026632979621559623 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 464.19 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.210279023699127e-08,-1.5437695198116052e-07,-2.5606201102908434e-08)
    sum a = (-2.439454888092385e-19,4.133520782600986e-18,2.676624113323589e-19)
    sum e = 0.050005027863450235
    sum de = 2.2808420688167003e-05
Info: CFL hydro = 0.004305100970695994 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004305100970695994 cfl multiplier : 0.56                      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6438e+05 | 100000 |      1 | 6.083e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.760915674285048 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0027416299178368883, dt = 0.004305100970695994 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 352.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (65.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.192574561542138e-07,-2.5638510380784757e-07,-4.138603989972793e-08)
    sum a = (4.2012834183813297e-19,4.9873299934333204e-18,3.049318610115481e-20)
    sum e = 0.0500084134163752
    sum de = 4.257491263847525e-05
Info: CFL hydro = 0.005275348061247061 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005275348061247061 cfl multiplier : 0.7066666666666667        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6488e+05 | 100000 |      1 | 6.065e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.553884723051393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.007046730888532882, dt = 0.002953269111467118 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 385.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.437600711261582e-08,-1.8381792789959024e-07,-2.8378016042895942e-08)
    sum a = (-1.111307226797642e-18,1.5178830414797062e-18,-3.3881317890172014e-21)
    sum e = 0.0500057762793096
    sum de = 5.650459766919084e-05
Info: CFL hydro = 0.0059025294780192744 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0059025294780192744 cfl multiplier : 0.8044444444444444       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6593e+05 | 100000 |      1 | 6.027e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.641464275768435 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 4111.531397224 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 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 2.01 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 711.85 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.29 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 683.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.85 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.051780321000000004 s
Info: compute_slice took 1268.38 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.32 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.021669949 s
Info: compute_slice took 1237.38 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.88 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 1221.77 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.82 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 2.00 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.01, dt = 0.0059025294780192744 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (1.5%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 446.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7151283987920353e-07,-3.787508577268322e-07,-5.6690749869584806e-08)
    sum a = (-5.10930273783794e-18,6.776263578034403e-18,4.743384504624082e-20)
    sum e = 0.05001359546179713
    sum de = 8.321966719101564e-05
Info: CFL hydro = 0.006896793725036606 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006896793725036606 cfl multiplier : 0.8696296296296296        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6414e+05 | 100000 |      1 | 6.093e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.87724718118665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.015902529478019276, dt = 0.004097470521980725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 373.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2190401666179469e-07,-2.794318315176631e-07,-3.930071831441492e-08)
    sum a = (-6.911788849595091e-19,-1.2115959277525512e-17,6.098637220230962e-20)
    sum e = 0.05000885823542569
    sum de = 0.00010278018968175342
Info: CFL hydro = 0.007165314841506836 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007165314841506836 cfl multiplier : 0.9130864197530864        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6461e+05 | 100000 |      1 | 6.075e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.28100511292842 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 4129.647352439 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.vtk          [VTK Dump][rank=0]
              - took 8.20 ms, bandwidth = 651.06 MB/s
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.38 us    (55.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.sham    [Shamrock Dump][rank=0]
              - took 11.92 ms, bandwidth = 1.00 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.04 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 2.00 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 713.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.49 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 683.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.10 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.050162649000000004 s
Info: compute_slice took 1272.97 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.02 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.020925873 s
Info: compute_slice took 1246.80 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.83 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 1226.21 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.09 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 2.00 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.02, dt = 0.007165314841506836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.5%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 448.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.149958543910432e-07,-5.096188139309461e-07,-6.863875320343454e-08)
    sum a = (-2.656295322589486e-18,2.9002408113987244e-18,-1.6940658945086007e-20)
    sum e = 0.050019507722899856
    sum de = 0.00013479822971576217
Info: CFL hydro = 0.007254296322212843 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007254296322212843 cfl multiplier : 0.9420576131687243        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6347e+05 | 100000 |      1 | 6.117e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.167414955150946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.027165314841506836, dt = 0.002834685158493163 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 443.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.497400236712775e-08,-2.167408181237672e-07,-2.707675343103736e-08)
    sum a = (-2.4123498337802474e-18,8.212831456577696e-18,9.825582188149884e-20)
    sum e = 0.050007635828029154
    sum de = 0.00014929827338235603
Info: CFL hydro = 0.0073710593975088974 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0073710593975088974 cfl multiplier : 0.9613717421124829       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6465e+05 | 100000 |      1 | 6.073e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.802624071997315 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 4147.82045679 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 713.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.96 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 683.31 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.41 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.051896886 s
Info: compute_slice took 1267.92 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.58 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.021743729 s
Info: compute_slice took 1237.01 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.78 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 1223.24 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.10 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.03, dt = 0.0073710593975088974 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.7%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 14.07 us   (3.3%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 392.88 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1961924510564514e-07,-5.796596368295682e-07,-7.031233450677806e-08)
    sum a = (1.0570971181733668e-18,-4.9060148304969076e-18,-1.7957098481791167e-19)
    sum e = 0.050021982595485244
    sum de = 0.00018201596977127687
Info: CFL hydro = 0.007487629931569195 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007487629931569195 cfl multiplier : 0.9742478280749886        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6343e+05 | 100000 |      1 | 6.119e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.366928945870704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0373710593975089, dt = 0.002628940602491102 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.9%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 342.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.584106607129971e-08,-2.2201013320120333e-07,-2.49737931824764e-08)
    sum a = (8.809142651444724e-20,-3.0899761915836876e-18,-7.453889935837843e-20)
    sum e = 0.050009040833582465
    sum de = 0.00019580974912144236
Info: CFL hydro = 0.007424416914102689 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007424416914102689 cfl multiplier : 0.9828318853833258        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6475e+05 | 100000 |      1 | 6.070e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.592370894875641 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 4165.916380068 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.vtk          [VTK Dump][rank=0]
              - took 8.04 ms, bandwidth = 664.06 MB/s
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.61 us    (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.sham    [Shamrock Dump][rank=0]
              - took 11.87 ms, bandwidth = 1.00 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 713.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 707.12 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 681.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.81 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.051012676 s
Info: compute_slice took 1275.98 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1217.85 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.021318873000000002 s
Info: compute_slice took 1244.90 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1219.38 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 1226.28 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.65 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.04, dt = 0.007424416914102689 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.89 us   (4.2%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 444.19 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.10432457236999e-07,-6.426722170977799e-07,-7.04096901445396e-08)
    sum a = (6.69494841509799e-18,-6.830473686658678e-18,-3.049318610115481e-20)
    sum e = 0.05002428473067922
    sum de = 0.00022870410734076387
Info: CFL hydro = 0.007027006036166215 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007027006036166215 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.6193e+05 | 100000 |      1 | 6.175e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.281643636243494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04742441691410269, dt = 0.0025755830858973094 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.7%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 371.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.805422520050001e-08,-2.3851634905955005e-07,-2.4294577846709746e-08)
    sum a = (4.4994390158148434e-18,1.6263032587282567e-19,6.776263578034403e-20)
    sum e = 0.05001115121823047
    sum de = 0.0002423977178780639
Info: CFL hydro = 0.00693312515844246 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00693312515844246 cfl multiplier : 0.9923697268370336         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6481e+05 | 100000 |      1 | 6.068e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.281269490402888 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 4184.067698089 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.02 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 712.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.64 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 686.31 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.19 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.050938687 s
Info: compute_slice took 1277.74 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.30 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.022162397 s
Info: compute_slice took 1246.29 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.89 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 1231.26 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.19 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.05, dt = 0.00693312515844246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 503.47 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7738600606566035e-07,-6.567234760788571e-07,-6.52620472457159e-08)
    sum a = (1.7923217163900995e-17,1.951563910473908e-18,-1.0503208545953324e-19)
    sum e = 0.05002468720018685
    sum de = 0.00027335539645945237
Info: CFL hydro = 0.006612302537792221 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006612302537792221 cfl multiplier : 0.9949131512246892        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6088e+05 | 100000 |      1 | 6.216e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.155372446016656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05693312515844246, dt = 0.003066874841557536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 344.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.017326634342865e-08,-3.080013766545271e-07,-2.8692119679310615e-08)
    sum a = (1.0652286344670081e-17,7.453889935837843e-18,-6.098637220230962e-20)
    sum e = 0.05001459336722075
    sum de = 0.0002891197518965188
Info: CFL hydro = 0.006505741629311363 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006505741629311363 cfl multiplier : 0.9966087674831261        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6294e+05 | 100000 |      1 | 6.137e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.989279146084087 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 4202.274087605 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.vtk          [VTK Dump][rank=0]
              - took 8.57 ms, bandwidth = 622.94 MB/s
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.17 us    (56.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.sham    [Shamrock Dump][rank=0]
              - took 11.82 ms, bandwidth = 1.01 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 706.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.87 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 686.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.21 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.051392195 s
Info: compute_slice took 1270.49 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.54 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.022263853 s
Info: compute_slice took 1237.31 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.82 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 1231.85 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.75 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.06, dt = 0.006505741629311363 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (1.6%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 416.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3971336344583833e-07,-6.697515993436025e-07,-6.06839567679126e-08)
    sum a = (3.4558944247975454e-18,1.1275702593849246e-17,4.743384504624082e-20)
    sum e = 0.050025906667240515
    sum de = 0.0003183614350285482
Info: CFL hydro = 0.0062593403795791905 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0062593403795791905 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.6060e+05 | 100000 |      1 | 6.227e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.61318571611375 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06650574162931136, dt = 0.0034942583706886465 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 337.17 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.311467760569257e-08,-3.7824468751888734e-07,-3.237203677154949e-08)
    sum a = (-9.486769009248164e-19,8.998878031629687e-18,9.147955830346444e-20)
    sum e = 0.05001851410395535
    sum de = 0.0003358718242143873
Info: CFL hydro = 0.006150598375112365 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006150598375112365 cfl multiplier : 0.998492785548056         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6192e+05 | 100000 |      1 | 6.176e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.368518166268583 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 4220.467776330001 (s)                                        [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 700.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.01 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 678.48 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 717.12 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.050949633 s
Info: compute_slice took 1266.26 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.91 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.021752553 s
Info: compute_slice took 1239.18 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.18 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 1231.01 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.26 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.07, dt = 0.006150598375112365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.86 us    (1.7%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 436.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (75.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.833641744135651e-08,-6.83066943959277e-07,-5.675624519848864e-08)
    sum a = (-1.0672615135404184e-18,7.589415207398531e-19,-7.792703114739563e-20)
    sum e = 0.05002793719663443
    sum de = 0.00036362299916996353
Info: CFL hydro = 0.006137699677763539 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006137699677763539 cfl multiplier : 0.9989951903653708        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6270e+05 | 100000 |      1 | 6.146e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.025209952084694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07615059837511237, dt = 0.00384940162488763 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.6%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 411.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.590768455884797e-08,-4.461719124382106e-07,-3.525699185177173e-08)
    sum a = (-1.14044516018319e-17,3.821812658011403e-18,-7.453889935837843e-20)
    sum e = 0.05002284900183369
    sum de = 0.00038251174149876005
Info: CFL hydro = 0.006056950038813934 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006056950038813934 cfl multiplier : 0.9993301269102473        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6211e+05 | 100000 |      1 | 6.169e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.46463600470325 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 4238.660502536 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.vtk          [VTK Dump][rank=0]
              - took 8.13 ms, bandwidth = 657.10 MB/s
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.21 us    (55.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.sham    [Shamrock Dump][rank=0]
              - took 11.66 ms, bandwidth = 1.02 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.02 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 711.35 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 705.23 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 691.37 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 707.40 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.05075429 s
Info: compute_slice took 1287.41 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.41 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.021130996000000003 s
Info: compute_slice took 1259.08 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.43 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 1236.37 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.99 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.08, dt = 0.006056950038813934 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.96 us    (1.7%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 454.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.5234349214191655e-08,-7.199647195765113e-07,-5.519919895557362e-08)
    sum a = (-1.2790197503539935e-18,-8.51098705401121e-18,-3.049318610115481e-19)
    sum e = 0.05003146189373689
    sum de = 0.0004097507553596422
Info: CFL hydro = 0.005846818124369792 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005846818124369792 cfl multiplier : 0.9995534179401648        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6157e+05 | 100000 |      1 | 6.189e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.22938882393686 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08605695003881393, dt = 0.003943049961186065 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.6%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 391.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (74.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6927438639398494e-08,-4.864562763676323e-07,-3.5634179022323475e-08)
    sum a = (3.7059809024743776e-18,-1.1221492485224971e-17,-4.0657581468206416e-20)
    sum e = 0.050027118596452244
    sum de = 0.00042891872792259273
Info: CFL hydro = 0.005704361817688314 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005704361817688314 cfl multiplier : 0.9997022786267765        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6315e+05 | 100000 |      1 | 6.129e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.158649246381056 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 4256.928483429 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.02 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 704.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 721.80 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 696.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 722.88 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.051216364 s
Info: compute_slice took 1276.67 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1252.16 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.021582395 s
Info: compute_slice took 1246.31 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1251.13 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 1243.62 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1249.91 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.09, dt = 0.005704361817688314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (1.6%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 452.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.054057884777432e-09,-7.198243730645741e-07,-5.1253152962209455e-08)
    sum a = (-1.2920640577417097e-17,1.4474099002681484e-17,3.7269449679189215e-20)
    sum e = 0.05003447236493449
    sum de = 0.00045451974494840544
Info: CFL hydro = 0.005508627681330341 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005508627681330341 cfl multiplier : 0.9998015190845176        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6286e+05 | 100000 |      1 | 6.140e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.444766326591136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09570436181768831, dt = 0.004295638182311698 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.6%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 407.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8932859453370805e-08,-5.587601267880075e-07,-3.825469247907028e-08)
    sum a = (2.0233923044010726e-17,-4.336808689942018e-19,1.3552527156068805e-20)
    sum e = 0.050032471088390165
    sum de = 0.0004748717545992588
Info: CFL hydro = 0.0061512620523685845 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0061512620523685845 cfl multiplier : 0.9998676793896785       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6164e+05 | 100000 |      1 | 6.186e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.997096562133695 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 4275.209258209 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.vtk          [VTK Dump][rank=0]
              - took 8.13 ms, bandwidth = 656.97 MB/s
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.17 us    (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.sham    [Shamrock Dump][rank=0]
              - took 11.75 ms, bandwidth = 1.02 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.02 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 719.43 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.04 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 685.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 719.94 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.050764749000000005 s
Info: compute_slice took 1288.76 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1255.06 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.021538371 s
Info: compute_slice took 1262.57 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1253.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 1246.93 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1257.89 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.1, dt = 0.0061512620523685845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.7%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 403.29 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.334298474459707e-08,-8.171308741958723e-07,-5.4394177268166195e-08)
    sum a = (3.757438154020076e-18,-6.884683795282953e-18,-1.1858461261560205e-19)
    sum e = 0.050040999216699786
    sum de = 0.0005019270989951967
Info: CFL hydro = 0.005907962449592291 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005907962449592291 cfl multiplier : 0.9999117862597856        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6101e+05 | 100000 |      1 | 6.211e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.65587880952886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10615126205236859, dt = 0.0038487379476314088 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.8%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 347.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.843880030131998e-08,-5.254194048086384e-07,-3.3671502737091835e-08)
    sum a = (5.014435047745458e-18,1.7889335846010823e-18,0)
    sum e = 0.05003642074965382
    sum de = 0.0005204168510991145
Info: CFL hydro = 0.005770153510352106 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005770153510352106 cfl multiplier : 0.9999411908398571        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6334e+05 | 100000 |      1 | 6.122e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.63107799797742 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 4293.558339736001 (s)                                        [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.02 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 712.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.88 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 682.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.23 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.051121468 s
Info: compute_slice took 1288.45 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.64 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.022124832 s
Info: compute_slice took 1255.65 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1285.74 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 1589.08 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1314.92 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 2.05 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.11, dt = 0.005770153510352106 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.5%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 448.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1247851796605217e-07,-7.999541422983943e-07,-5.0127382318573504e-08)
    sum a = (-6.3696877633523385e-18,-4.87890977618477e-18,2.778268066994105e-19)
    sum e = 0.05004476889472409
    sum de = 0.0005454595935269012
Info: CFL hydro = 0.0055710140061803115 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0055710140061803115 cfl multiplier : 0.999960793893238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6194e+05 | 100000 |      1 | 6.175e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.638553309650824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11577015351035211, dt = 0.004229846489647887 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.5%)
   patch tree reduce : 2.37 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 411.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.111620027845108e-07,-5.986216078775471e-07,-3.6342025011136214e-08)
    sum a = (-5.759824041329242e-18,-6.396792817664476e-18,-3.1509625637859973e-19)
    sum e = 0.050042735652361746
    sum de = 0.0005650452237409383
Info: CFL hydro = 0.005437714335851718 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005437714335851718 cfl multiplier : 0.999973862595492         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6186e+05 | 100000 |      1 | 6.178e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.646568822850366 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 4312.331525753 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.vtk          [VTK Dump][rank=0]
              - took 8.09 ms, bandwidth = 660.22 MB/s
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     : 6.31 us    (52.4%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.sham    [Shamrock Dump][rank=0]
              - took 11.93 ms, bandwidth = 1023.56 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 715.04 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.84 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 686.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.95 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.051137203000000006 s
Info: compute_slice took 1283.91 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1248.58 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.019292072 s
Info: compute_slice took 1252.69 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.67 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 1234.86 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.45 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.12, dt = 0.005437714335851718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.4%)
   patch tree reduce : 2.19 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 495.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7125667142966255e-07,-7.797841193928838e-07,-4.6324404065079124e-08)
    sum a = (4.2825985813177425e-18,6.7220534694101275e-18,1.3552527156068805e-19)
    sum e = 0.050049212592581264
    sum de = 0.000588445778241025
Info: CFL hydro = 0.005273793725474637 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005273793725474637 cfl multiplier : 0.9999825750636614        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.5961e+05 | 100000 |      1 | 6.265e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.244202019422367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1254377143358517, dt = 0.004562285664148291 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.6%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 392.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7555161126825743e-07,-6.63817991252692e-07,-3.8425187259605346e-08)
    sum a = (-8.17217387510949e-18,-3.686287386450715e-18,1.1180834903756764e-19)
    sum e = 0.050049453786860376
    sum de = 0.0006087769545840951
Info: CFL hydro = 0.005146952810589532 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005146952810589532 cfl multiplier : 0.9999883833757742        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6201e+05 | 100000 |      1 | 6.172e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.609437801065663 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 4330.6117457870005 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 697.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.67 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 687.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.48 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.051159532 s
Info: compute_slice took 1257.61 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.31 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.020133306 s
Info: compute_slice took 1225.39 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.14 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 1212.39 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.41 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.13, dt = 0.005146952810589532 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (1.6%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 440.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2940049278050567e-07,-7.564431692519985e-07,-4.2917377823822846e-08)
    sum a = (-6.4374503991326826e-18,1.0842021724855044e-18,1.8295911660692887e-19)
    sum e = 0.05005427592828658
    sum de = 0.0006306440634004658
Info: CFL hydro = 0.005011061940298109 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005011061940298109 cfl multiplier : 0.9999922555838495        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6205e+05 | 100000 |      1 | 6.171e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.026203322404793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13514695281058953, dt = 0.0048530471894104865 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 393.42 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5079991621503425e-07,-7.196296772922389e-07,-3.999250572932868e-08)
    sum a = (2.290377089375628e-18,-1.0842021724855044e-18,-1.0842021724855044e-19)
    sum e = 0.050056556974205545
    sum de = 0.000651382601269272
Info: CFL hydro = 0.0050924333040594655 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0050924333040594655 cfl multiplier : 0.9999948370558996       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6196e+05 | 100000 |      1 | 6.174e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.29539357661059 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 4348.736989229 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.vtk          [VTK Dump][rank=0]
              - took 8.14 ms, bandwidth = 655.90 MB/s
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     : 7.02 us    (56.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.sham    [Shamrock Dump][rank=0]
              - took 11.95 ms, bandwidth = 1022.16 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 694.58 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.72 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 667.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 708.57 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.051627621000000005 s
Info: compute_slice took 1257.49 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.48 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.02263938 s
Info: compute_slice took 1226.32 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.84 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 1215.67 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.70 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.14, dt = 0.0050924333040594655 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.38 us    (1.9%)
   patch tree reduce : 2.27 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 422.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9838953047239165e-07,-7.596662524855046e-07,-4.148151172955191e-08)
    sum a = (-1.111307226797642e-18,-1.496198998029996e-17,-4.404571325722362e-20)
    sum e = 0.05006062132549749
    sum de = 0.0006725006227396777
Info: CFL hydro = 0.004924281246212515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004924281246212515 cfl multiplier : 0.9999965580372665        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6164e+05 | 100000 |      1 | 6.186e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.633924177822934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14509243330405946, dt = 0.0049075666959405295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.7%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 360.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.241678551423428e-07,-7.34802632919929e-07,-3.9472122328963976e-08)
    sum a = (3.7947076036992655e-18,-6.938893903907228e-18,3.3881317890172014e-20)
    sum e = 0.05006345320728578
    sum de = 0.0006927125857671546
Info: CFL hydro = 0.004776012337638411 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004776012337638411 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.6142e+05 | 100000 |      1 | 6.195e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51925532606023 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 4366.873809678001 (s)                                        [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.05 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 697.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.31 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 671.43 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.93 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.050810382 s
Info: compute_slice took 1259.69 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.28 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.022201908000000003 s
Info: compute_slice took 1234.39 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.66 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 1217.83 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.78 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.15, dt = 0.004776012337638411 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (1.6%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 434.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.506590619886972e-07,-7.158030118238539e-07,-3.792846835583941e-08)
    sum a = (2.2497195079074217e-18,-7.589415207398531e-19,-3.049318610115481e-20)
    sum e = 0.0500664532344728
    sum de = 0.0007119983694674626
Info: CFL hydro = 0.005135263477020718 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005135263477020718 cfl multiplier : 0.9999984702387851        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6213e+05 | 100000 |      1 | 6.168e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.875742511791948 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1547760123376384, dt = 0.005135263477020718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.8%)
   patch tree reduce : 1774.00 ns (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 364.13 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.14605046181381e-07,-7.684283256143668e-07,-4.0260113243513824e-08)
    sum a = (-1.3823577699190182e-18,1.2414114874959026e-17,-2.541098841762901e-19)
    sum e = 0.05007119708982718
    sum de = 0.0007319732757783584
Info: CFL hydro = 0.00501633952694588 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00501633952694588 cfl multiplier : 0.99999898015919           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6180e+05 | 100000 |      1 | 6.180e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.9121083590324 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.15991127581465914, dt = 8.872418534086601e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 344.57 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.87360136535582e-09,-1.3215455156118322e-08,-6.856588942318603e-10)
    sum a = (8.131516293641283e-19,1.0842021724855044e-18,1.9312351197398048e-19)
    sum e = 0.05006367839104994
    sum de = 0.000733532905905748
Info: CFL hydro = 0.00501695659278896 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00501695659278896 cfl multiplier : 0.9999993201061267         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6782e+05 | 100000 |      1 | 5.959e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5360167760394726 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 4385.646176016 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.vtk          [VTK Dump][rank=0]
              - took 8.18 ms, bandwidth = 653.07 MB/s
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.57 us    (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.sham    [Shamrock Dump][rank=0]
              - took 11.99 ms, bandwidth = 1018.72 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 705.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 701.00 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 678.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 700.32 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.050998288 s
Info: compute_slice took 1276.58 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.42 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.021972633000000002 s
Info: compute_slice took 1233.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1214.47 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 1223.74 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1216.61 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 2.00 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.16, dt = 0.00501695659278896 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 32.90 us   (7.0%)
   patch tree reduce : 2.10 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 422.37 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4591654977800827e-07,-7.471953479076614e-07,-3.8761120211107236e-08)
    sum a = (8.402566836762659e-19,-8.239936510889834e-18,8.131516293641283e-20)
    sum e = 0.05007465278013863
    sum de = 0.0007516001759323022
Info: CFL hydro = 0.004907321014851006 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004907321014851006 cfl multiplier : 0.9999995467374179        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.5974e+05 | 100000 |      1 | 6.260e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.85098847501128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16501695659278898, dt = 0.004907321014851006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.7%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 375.72 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 21.70 us   (5.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.751271736648651e-07,-7.253380686319782e-07,-3.736363717124716e-08)
    sum a = (-3.333921680392926e-18,-1.2034644114589099e-17,1.3552527156068805e-20)
    sum e = 0.05007808638508631
    sum de = 0.0007699609766970208
Info: CFL hydro = 0.004810074095525578 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004810074095525578 cfl multiplier : 0.9999996978249452        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.741659284155215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16992427760763998, dt = 7.572239236003364e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.4%)
   patch tree reduce : 2.11 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 461.37 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.925880308504463e-09,-1.107557197680114e-08,-5.680356827630072e-10)
    sum a = (2.5478751053409354e-18,1.1980434005964824e-17,-9.656175598699024e-20)
    sum e = 0.050071199940689794
    sum de = 0.0007713883969926203
Info: CFL hydro = 0.004811343941625121 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004811343941625121 cfl multiplier : 0.9999997985499635        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6830e+05 | 100000 |      1 | 5.942e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.45878953314949494 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 4404.3512001280005 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.01 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 701.37 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 692.68 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 682.21 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 691.41 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.050563656000000005 s
Info: compute_slice took 1264.75 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1210.81 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.021365022 s
Info: compute_slice took 1234.42 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.59 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 1229.09 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1207.51 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 2.00 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.17, dt = 0.004811343941625121 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.7%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 402.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (66.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.041898482571971e-07,-7.036025066891493e-07,-3.608412826949156e-08)
    sum a = (3.848917712323541e-18,5.366800753803247e-18,-8.639736061993863e-20)
    sum e = 0.050081636487784596
    sum de = 0.0007877233112824549
Info: CFL hydro = 0.004719921461825401 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004719921461825401 cfl multiplier : 0.9999998656999756        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6198e+05 | 100000 |      1 | 6.174e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.055917230202805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17481134394162512, dt = 0.004719921461825401 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.6%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 372.79 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.312152042884924e-07,-6.810235152918009e-07,-3.4867052866001185e-08)
    sum a = (6.7220534694101275e-18,1.0299920638612292e-18,-1.0842021724855044e-19)
    sum e = 0.05008515482329169
    sum de = 0.000804343572430282
Info: CFL hydro = 0.005173914394565182 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005173914394565182 cfl multiplier : 0.9999999104666504        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6147e+05 | 100000 |      1 | 6.193e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.436088858857488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17953126540345052, dt = 0.0004687345965494749 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.7%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 365.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.633629142182858e-08,-6.65359026965636e-08,-3.409777208095283e-09)
    sum a = (-8.212831456577696e-18,5.2583805365546965e-18,7.623296525288703e-20)
    sum e = 0.050079152196371386
    sum de = 0.0008070792226184814
Info: CFL hydro = 0.00514276256497126 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00514276256497126 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.6610e+05 | 100000 |      1 | 6.020e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8028516489988187 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 42                                                      [SPH][rank=0]
Info: time since start : 4422.978981711 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.vtk          [VTK Dump][rank=0]
              - took 8.04 ms, bandwidth = 664.37 MB/s
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     : 5.83 us    (53.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.sham    [Shamrock Dump][rank=0]
              - took 11.71 ms, bandwidth = 1.02 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 697.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 708.10 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 667.78 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 709.21 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.051845214 s
Info: compute_slice took 1299.67 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.54 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.021131933000000002 s
Info: compute_slice took 1230.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.49 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 1218.67 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.47 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.18, dt = 0.00514276256497126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (1.6%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 439.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.220052088145691e-07,-7.286909986742993e-07,-3.735242935148688e-08)
    sum a = (-6.505213034913027e-19,-4.716279450311944e-18,-6.437450399132683e-20)
    sum e = 0.050090944201300634
    sum de = 0.0008230280802409527
Info: CFL hydro = 0.005043211160047304 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005043211160047304 cfl multiplier : 0.9999999602074002        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.5978e+05 | 100000 |      1 | 6.259e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.58105645573553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18514276256497125, dt = 0.0048572374350287495 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.7%)
   patch tree reduce : 2.22 us    (0.5%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 383.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.279485480120125e-07,-6.732576017032862e-07,-3.4667941773890727e-08)
    sum a = (-5.366800753803247e-18,2.7647155398380363e-18,-8.300922883092143e-20)
    sum e = 0.05009416856843078
    sum de = 0.0008388954609018897
Info: CFL hydro = 0.0048476964002360165 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0048476964002360165 cfl multiplier : 0.9999999734716001       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6212e+05 | 100000 |      1 | 6.168e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34878299247651 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 4441.143413339 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 697.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 693.62 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 701.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 678.93 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.051573418 s
Info: compute_slice took 1270.86 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.54 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.021608745000000002 s
Info: compute_slice took 1235.33 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1218.06 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 1225.68 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.84 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.19, dt = 0.0048476964002360165 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.7%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 387.27 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.647655604848556e-07,-6.555205042286326e-07,-3.401225462377729e-08)
    sum a = (-5.095750210681871e-18,-1.951563910473908e-18,1.1519648082658485e-19)
    sum e = 0.050098259535597475
    sum de = 0.0008538910274735617
Info: CFL hydro = 0.004669170748412403 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004669170748412403 cfl multiplier : 0.9999999823144           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6267e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.388677352051705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19484769640023603, dt = 0.004669170748412403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.7%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 360.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.766361656281158e-07,-6.134341423729057e-07,-3.218378693392512e-08)
    sum a = (-4.391018798566293e-18,-2.9815559743351372e-18,1.5246593050577406e-19)
    sum e = 0.0501017990734954
    sum de = 0.0008677785832108732
Info: CFL hydro = 0.004511446062141186 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004511446062141186 cfl multiplier : 0.9999999882095999        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6290e+05 | 100000 |      1 | 6.139e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.381375023335636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19951686714864844, dt = 0.0004831328513515698 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.6%)
   patch tree reduce : 2.58 us    (0.6%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 385.42 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.360202099151363e-08,-6.14722394733948e-08,-3.271680068331215e-09)
    sum a = (5.204170427930421e-18,5.095750210681871e-18,1.5924219408380846e-19)
    sum e = 0.050095940437960625
    sum de = 0.0008703550662365701
Info: CFL hydro = 0.004496312707724658 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004496312707724658 cfl multiplier : 0.9999999921397332        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6180e+05 | 100000 |      1 | 6.180e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.814198579380777 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 47                                                      [SPH][rank=0]
Info: time since start : 4459.830759711001 (s)                                        [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.vtk          [VTK Dump][rank=0]
              - took 7.92 ms, bandwidth = 674.68 MB/s
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.48 us    (55.2%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.sham    [Shamrock Dump][rank=0]
              - took 11.76 ms, bandwidth = 1.01 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.02 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 690.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 698.87 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 673.28 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 707.96 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.051072121000000005 s
Info: compute_slice took 1255.43 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.98 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.022039479 s
Info: compute_slice took 1228.29 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.45 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 1214.69 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.63 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.2, dt = 0.004496312707724658 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 32.81 us   (6.9%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 431.38 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.884160570719471e-07,-5.700579114804576e-07,-3.039127714257573e-08)
    sum a = (1.2576745200831851e-17,2.8731357570865868e-18,-3.3881317890172014e-20)
    sum e = 0.0501057080709953
    sum de = 0.0008818594693621004
Info: CFL hydro = 0.004357304100223716 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004357304100223716 cfl multiplier : 0.9999999947598223        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6273e+05 | 100000 |      1 | 6.145e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.339863726214723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20449631270772467, dt = 0.004357304100223716 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.8%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 355.57 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.978605211343809e-07,-5.330730516046585e-07,-2.8933970728467853e-08)
    sum a = (-1.6263032587282567e-18,-9.2970336290632e-18,-1.4230153513872246e-19)
    sum e = 0.05010922896647938
    sum de = 0.0008934780762711045
Info: CFL hydro = 0.004233206676849228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004233206676849228 cfl multiplier : 0.9999999965065482        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6279e+05 | 100000 |      1 | 6.143e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.536289254081566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2088536168079484, dt = 0.0011463831920515977 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.7%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 358.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.913137765545374e-07,-1.3487194496320865e-07,-7.478169885657901e-09)
    sum a = (9.107298248878237e-18,-8.782037597132586e-18,0)
    sum e = 0.0501050947992859
    sum de = 0.0008974480500593917
Info: CFL hydro = 0.004202957703138793 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004202957703138793 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.6364e+05 | 100000 |      1 | 6.111e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.753497799673875 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 50                                                      [SPH][rank=0]
Info: time since start : 4478.539490105 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 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 2.01 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 699.17 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 696.64 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 724.95 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 698.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.051030061 s
Info: compute_slice took 1262.62 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1207.18 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.021392397 s
Info: compute_slice took 1231.43 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1252.73 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 1221.96 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.86 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.21, dt = 0.004202957703138793 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (1.7%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 432.09 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.087613896004247e-07,-4.890294325453782e-07,-2.7286276492803258e-08)
    sum a = (-3.469446951953614e-18,-1.6154612370034016e-17,-1.6940658945086007e-20)
    sum e = 0.050113672695247385
    sum de = 0.0009068954091718256
Info: CFL hydro = 0.004093294944303578 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004093294944303578 cfl multiplier : 0.9999999984473549        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6128e+05 | 100000 |      1 | 6.200e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.402458061461168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2142029577031388, dt = 0.004093294944303578 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.5%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 392.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.161848538261087e-07,-4.5589952717586503e-07,-2.6102832555554674e-08)
    sum a = (4.336808689942018e-19,2.3012191111004832e-17,-5.421010862427522e-20)
    sum e = 0.05011714838323808
    sum de = 0.0009164106680090001
Info: CFL hydro = 0.003994693346211357 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.003994693346211357 cfl multiplier : 0.9999999989649032        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6195e+05 | 100000 |      1 | 6.175e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.865027221565757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21829625264744237, dt = 0.0017037473525576274 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.8%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 350.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0836883357233784e-07,-1.809314167136285e-07,-1.0670743570726165e-08)
    sum a = (-2.222614453595284e-18,-1.2739375526704677e-18,4.573977915173222e-20)
    sum e = 0.05011465518857547
    sum de = 0.0009210300818870584
Info: CFL hydro = 0.003956670799243228 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.003956670799243228 cfl multiplier : 0.9999999993099354        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6463e+05 | 100000 |      1 | 6.074e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.097647488475184 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 4497.304309522 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000011.vtk          [VTK Dump][rank=0]
              - took 7.87 ms, bandwidth = 678.64 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000011.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (55.2%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000011.sham    [Shamrock Dump][rank=0]
              - took 11.72 ms, bandwidth = 1.02 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.02 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 690.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 693.00 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 721.41 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 678.59 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.05162469 s
Info: compute_slice took 1266.19 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1294.68 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.021358473000000003 s
Info: compute_slice took 1237.82 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.62 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 1228.91 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.47 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.22, dt = 0.003956670799243228 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.6%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 422.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.258906631554659e-07,-4.1127038869395835e-07,-2.45915623401708e-08)
    sum a = (3.686287386450715e-18,1.0489656018797255e-17,-1.6263032587282567e-19)
    sum e = 0.0501220618993649
    sum de = 0.0009285848964389
Info: CFL hydro = 0.0038693516804311893 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0038693516804311893 cfl multiplier : 0.999999999539957        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6208e+05 | 100000 |      1 | 6.170e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.08623616954026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22395667079924322, dt = 0.0038693516804311893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 409.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.31601605237534e-07,-3.811098017020886e-07,-2.361422119313399e-08)
    sum a = (8.348356728138384e-18,3.7947076036992655e-18,-1.6093625997831706e-19)
    sum e = 0.050125477750449156
    sum de = 0.0009361259101292111
Info: CFL hydro = 0.004212380115029897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004212380115029897 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    | 1.6195e+05 | 100000 |      1 | 6.175e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.559695546795552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2278260224796744, dt = 0.0021739775203256095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.7%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 352.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.226382283072707e-07,-2.0190976696484738e-07,-1.3025453258044804e-08)
    sum a = (-3.2526065174565133e-18,-1.49890950346121e-17,2.371692252312041e-20)
    sum e = 0.0501245063665408
    sum de = 0.0009407489549526904
Info: CFL hydro = 0.004167726374522231 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004167726374522231 cfl multiplier : 0.9999999997955363        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.732536710175781 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 4516.137842821 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.02 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 712.32 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 701.58 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 757.21 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 701.76 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.051348058 s
Info: compute_slice took 1292.35 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1237.14 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.021569561 s
Info: compute_slice took 1267.89 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.17 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 1245.64 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.08 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.23, dt = 0.004167726374522231 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.56 us    (1.6%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 445.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.224108939144843e-07,-3.734080475641127e-07,-2.4707580419487056e-08)
    sum a = (-2.222614453595284e-18,5.800481622797449e-18,1.1858461261560205e-20)
    sum e = 0.05013217156456438
    sum de = 0.0009469476884639179
Info: CFL hydro = 0.004649228717474036 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004649228717474036 cfl multiplier : 0.9999999998636909        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6262e+05 | 100000 |      1 | 6.149e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.399281314695724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23416772637452224, dt = 0.004649228717474036 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.7%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 395.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (73.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.426979062079687e-07,-3.8616200650491066e-07,-2.6992446086885077e-08)
    sum a = (-3.5236570605778894e-18,-3.0899761915836876e-18,1.0333801956502464e-19)
    sum e = 0.050137856016816224
    sum de = 0.0009534687918586435
Info: CFL hydro = 0.004577123483697457 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004577123483697457 cfl multiplier : 0.9999999999091272        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6269e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.230269389682416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23881695509199627, dt = 0.001183044908003722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.0%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 350.17 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.467316530807494e-07,-8.919564011135539e-08,-6.7043887426908856e-09)
    sum a = (1.5178830414797062e-18,-1.0679391398982219e-17,9.656175598699024e-20)
    sum e = 0.05013301456592966
    sum de = 0.000956376986654272
Info: CFL hydro = 0.004545076631180541 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004545076631180541 cfl multiplier : 0.9999999999394182        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6575e+05 | 100000 |      1 | 6.033e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.059321605906257 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 59                                                      [SPH][rank=0]
Info: time since start : 4535.069549422 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000012.vtk          [VTK Dump][rank=0]
              - took 7.97 ms, bandwidth = 670.10 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000012.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (54.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000012.sham    [Shamrock Dump][rank=0]
              - took 11.78 ms, bandwidth = 1.01 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 2.01 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 685.20 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 696.75 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 733.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 700.11 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.051098774000000007 s
Info: compute_slice took 1245.46 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1218.21 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.021657839 s
Info: compute_slice took 1216.80 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.52 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 1206.99 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1223.09 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 2.04 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.24, dt = 0.004545076631180541 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (1.7%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 422.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (74.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.54383677641922e-07,-3.335341335545367e-07,-2.5595224459685472e-08)
    sum a = (-9.920449878242366e-18,2.3310346708438345e-18,-1.6432439176733427e-19)
    sum e = 0.05014307550761605
    sum de = 0.0009606703007678202
Info: CFL hydro = 0.004413924045160037 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004413924045160037 cfl multiplier : 0.9999999999596122        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6085e+05 | 100000 |      1 | 6.217e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.319259466330383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24454507663118052, dt = 0.004413924045160037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (1.6%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 416.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.501526624589676e-07,-2.887960409534251e-07,-2.4246406774570663e-08)
    sum a = (8.673617379884035e-19,-3.699839913606784e-18,-1.6940658945086007e-19)
    sum e = 0.05014699247892074
    sum de = 0.0009651686538536791
Info: CFL hydro = 0.004297542923465226 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004297542923465226 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    | 1.6154e+05 | 100000 |      1 | 6.190e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.668933935803125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24895900067634055, dt = 0.0010409993236594473 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.6%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 392.69 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2910166968182264e-07,-5.97206438150355e-08,-5.576538430695729e-09)
    sum a = (8.294146619514109e-18,-1.0909784360635388e-17,2.879912020664621e-20)
    sum e = 0.05014254033400136
    sum de = 0.000967290696036203
Info: CFL hydro = 0.004387106555808707 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004387106555808707 cfl multiplier : 0.9999999999820499        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6499e+05 | 100000 |      1 | 6.061e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.18308634633393 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 4553.7987644410005 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.03 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 695.41 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 706.86 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 734.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 709.83 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.051178974 s
Info: compute_slice took 1277.91 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1243.06 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.021430438000000003 s
Info: compute_slice took 1244.42 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.09 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 1233.55 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.25, dt = 0.004387106555808707 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.93 us    (1.7%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 436.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.702852547374327e-07,-2.4313988373592614e-07,-2.3359098520329086e-08)
    sum a = (9.812029660993815e-18,1.0123737785583398e-17,7.453889935837843e-20)
    sum e = 0.05015219099984834
    sum de = 0.0009694036800891365
Info: CFL hydro = 0.004240620988416195 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004240620988416195 cfl multiplier : 0.9999999999880332        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6267e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.69169539990762 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2543871065558087, dt = 0.004240620988416195 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (1.6%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 418.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.564659219164477e-07,-1.9941710506519766e-07,-2.1994590667129953e-08)
    sum a = (9.75781955236954e-19,9.337691210531407e-18,-8.470329472543003e-20)
    sum e = 0.050155944440577756
    sum de = 0.0009717492874659467
Info: CFL hydro = 0.0043331029315265175 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0043331029315265175 cfl multiplier : 0.999999999992022        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.5823e+05 | 100000 |      1 | 6.320e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.15608925636041 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2586277275442249, dt = 0.001372272455775092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.6%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 393.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.148701994568355e-07,-5.301103188487928e-08,-6.932083843229249e-09)
    sum a = (3.2526065174565133e-19,-1.3538974628912737e-17,-1.1350241493207625e-19)
    sum e = 0.05015248384339297
    sum de = 0.0009733895429896855
Info: CFL hydro = 0.004289311160843592 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004289311160843592 cfl multiplier : 0.9999999999946813        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6518e+05 | 100000 |      1 | 6.054e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.159962000927584 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 4572.747196405 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000013.vtk          [VTK Dump][rank=0]
              - took 8.44 ms, bandwidth = 632.72 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000013.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000013.sham    [Shamrock Dump][rank=0]
              - took 11.72 ms, bandwidth = 1.02 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.01 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 684.96 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 692.23 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 745.87 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 689.89 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.050352646 s
Info: compute_slice took 1239.94 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.75 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.021579935 s
Info: compute_slice took 1209.30 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1210.30 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 1198.28 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.01 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.26, dt = 0.004289311160843592 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.6%)
   patch tree reduce : 2.25 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 413.55 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.892962819859383e-07,-1.5380287508948783e-07,-2.1478391115554555e-08)
    sum a = (7.37257477290143e-18,-1.5863233036178537e-17,-8.809142651444724e-20)
    sum e = 0.050161592931905315
    sum de = 0.0009733911231426148
Info: CFL hydro = 0.004367687036197398 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004367687036197398 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    | 1.6259e+05 | 100000 |      1 | 6.150e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.107082675820045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2642893111608436, dt = 0.004367687036197398 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 358.41 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0225828823696813e-06,-1.1800927245995767e-07,-2.1263107584043843e-08)
    sum a = (1.7943545954635098e-17,1.4704491964334654e-18,5.929230630780102e-20)
    sum e = 0.050166061541556846
    sum de = 0.0009734352234420654
Info: CFL hydro = 0.004326519955968372 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004326519955968372 cfl multiplier : 0.999999999997636         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6071e+05 | 100000 |      1 | 6.222e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.269929005100106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.268656998197041, dt = 0.001343001802959043 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (1.8%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 373.98 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.186758015908688e-07,-2.3861223234027096e-08,-6.345182639745397e-09)
    sum a = (-3.198396408832238e-18,-5.5599242657772274e-18,1.2027867851011065e-19)
    sum e = 0.05016220236850624
    sum de = 0.0009744702931554212
Info: CFL hydro = 0.004269572706553341 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004269572706553341 cfl multiplier : 0.999999999998424         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6561e+05 | 100000 |      1 | 6.038e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.006924490977084 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 4591.397464482 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 2.02 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 698.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 699.24 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 753.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 692.80 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.051009843000000006 s
Info: compute_slice took 1259.86 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.63 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.021799308 s
Info: compute_slice took 1238.11 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.00 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 1224.04 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.65 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 2.03 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.27, dt = 0.004269572706553341 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.5%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 418.16 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0169186911594672e-06,-6.350791478762377e-08,-1.99818540403851e-08)
    sum a = (-1.0299920638612292e-18,-5.53281921146509e-18,-5.421010862427522e-20)
    sum e = 0.050171287060060264
    sum de = 0.0009722344653133499
Info: CFL hydro = 0.00418036129164609 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00418036129164609 cfl multiplier : 0.9999999999989493         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.5514e+05 | 100000 |      1 | 6.446e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.84536940070906 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.27426957270655333, dt = 0.00418036129164609 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.5%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 384.93 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0064345664461996e-06,-2.314349909799681e-08,-1.8966763901376015e-08)
    sum a = (6.288372600415926e-18,-1.1352782592049387e-17,-1.2536087619363645e-19)
    sum e = 0.05017513427807492
    sum de = 0.000970208211451902
Info: CFL hydro = 0.004320039037633897 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004320039037633897 cfl multiplier : 0.9999999999992996        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.5653e+05 | 100000 |      1 | 6.388e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.557190361978922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2784499339981994, dt = 0.0015500660018006318 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (1.9%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 371.23 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.764811427692602e-07,5.8919316869935614e-09,-6.812994619480088e-09)
    sum a = (9.75781955236954e-18,-6.164705790116798e-18,1.6601845766184287e-19)
    sum e = 0.050172109819067695
    sum de = 0.0009702690327109733
Info: CFL hydro = 0.00427616921462097 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00427616921462097 cfl multiplier : 0.9999999999995332         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.4097e+05 | 100000 |      1 | 7.094e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.866332963893074 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 4610.333786743 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000014.vtk          [VTK Dump][rank=0]
              - took 8.23 ms, bandwidth = 649.08 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000014.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (54.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000014.sham    [Shamrock Dump][rank=0]
              - took 11.86 ms, bandwidth = 1.01 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.06 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 2.05 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 686.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 718.78 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 727.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.83 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.050719520000000004 s
Info: compute_slice took 1249.87 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1223.51 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.021537407 s
Info: compute_slice took 1231.30 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.09 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 1185.41 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.26 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 2.02 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.28, dt = 0.00427616921462097 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.7%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 405.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.041539896158263e-06,3.125043623965803e-08,-1.8568162540410875e-08)
    sum a = (2.168404344971009e-19,-7.49454751730605e-18,-5.082197683525802e-21)
    sum e = 0.05018103703837724
    sum de = 0.0009657318282310874
Info: CFL hydro = 0.004287656769922707 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004287656769922707 cfl multiplier : 0.9999999999996888        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6264e+05 | 100000 |      1 | 6.149e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.037120593034853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.284276169214621, dt = 0.004287656769922707 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 402.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0512169275308502e-06,7.331618246001284e-08,-1.7984860621513185e-08)
    sum a = (4.662069341687669e-18,3.4558944247975454e-18,2.270048298641525e-19)
    sum e = 0.05018521199647321
    sum de = 0.0009612097255800024
Info: CFL hydro = 0.004361167930354895 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004361167930354895 cfl multiplier : 0.9999999999997925        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6036e+05 | 100000 |      1 | 6.236e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.752643135194994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2885638259845437, dt = 0.0014361740154562597 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.9%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 352.93 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5378957408661546e-07,3.8877587601738846e-08,-5.80868162143806e-09)
    sum a = (4.336808689942018e-18,1.5971653253427087e-17,-1.3552527156068805e-20)
    sum e = 0.050181665915439044
    sum de = 0.0009606351048095532
Info: CFL hydro = 0.004317971799571115 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004317971799571115 cfl multiplier : 0.9999999999998618        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6457e+05 | 100000 |      1 | 6.076e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.508581517087256 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 4629.183668015 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 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 2.02 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 693.34 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 697.94 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 730.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 697.64 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.051260474 s
Info: compute_slice took 1246.79 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.04 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.021247438 s
Info: compute_slice took 1219.99 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1214.85 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 1198.43 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.47 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 2.01 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
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.29, dt = 0.004317971799571115 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.7%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 416.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.064955199093442e-06,1.3143963794203428e-07,-1.7245433346731642e-08)
    sum a = (-9.75781955236954e-19,-3.266159044612582e-18,2.202285662861181e-20)
    sum e = 0.05019081991322308
    sum de = 0.0009535922699303698
Info: CFL hydro = 0.004185918675938368 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004185918675938368 cfl multiplier : 0.999999999999908         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6237e+05 | 100000 |      1 | 6.159e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.240412903974885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2943179717995711, dt = 0.004185918675938368 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.6%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 392.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0347560852646864e-06,1.701704111525354e-07,-1.6074676580142798e-08)
    sum a = (5.421010862427522e-18,-8.524539581167279e-18,1.1265538198482195e-19)
    sum e = 0.05019447149192583
    sum de = 0.0009469259205656216
Info: CFL hydro = 0.004121452387434765 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004121452387434765 cfl multiplier : 0.9999999999999387        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6129e+05 | 100000 |      1 | 6.200e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.305106210605317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.29850389047550946, dt = 0.0014961095244905298 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.6%)
   patch tree reduce : 2.27 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 400.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6998536196079074e-07,7.57785918487983e-08,-5.519602570183562e-09)
    sum a = (-7.48099499014998e-18,-4.5672016515951874e-18,-9.402065714522734e-20)
    sum e = 0.05019125333384565
    sum de = 0.0009453687214278296
Info: CFL hydro = 0.004084313322482132 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004084313322482132 cfl multiplier : 0.9999999999999591        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.6516e+05 | 100000 |      1 | 6.055e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.895747212533658 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 77                                                      [SPH][rank=0]
Info: time since start : 4647.856059308 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000015.vtk          [VTK Dump][rank=0]
              - took 8.35 ms, bandwidth = 639.98 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000015.sham     [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (56.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000015.sham    [Shamrock Dump][rank=0]
              - took 11.80 ms, bandwidth = 1.01 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000030.json
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000030.json
Info: compute_slice field_name: rho, positions count: 2073600        [sph::CartesianRender][rank=0]
Info: compute_slice took 703.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 694.51 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000030.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 712.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 698.87 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000030.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.051173339000000005 s
Info: compute_slice took 1254.96 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1211.65 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000030.json
Info: compute_slice field_name: custom, positions count: 2073600     [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took :  0.021306455000000002 s
Info: compute_slice took 1220.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1194.59 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000030.json
Info: compute_slice field_name: dt_part, positions count: 2073600    [sph::CartesianRender][rank=0]
Info: compute_slice took 1217.18 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1216.26 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000030.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000030.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json

Plot generation#

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

534 import matplotlib
535 import matplotlib.pyplot as plt
536
537 face_on_render_kwargs = {
538     "x_unit": "au",
539     "y_unit": "au",
540     "time_unit": "year",
541     "x_label": "x",
542     "y_label": "y",
543 }
544
545 sink_params = {
546     "sink_scale_factor": 5,
547     "sink_color": "green",
548     "sink_linewidth": 1,
549     "sink_fill": False,
550 }
551
552 column_density_plot.render_all(
553     **face_on_render_kwargs,
554     field_unit="kg.m^-2",
555     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
556     vmin=1,
557     vmax=1e4,
558     norm="log",
559     **sink_params,
560 )
561
562 column_density_plot_hollywood.render_all(
563     **face_on_render_kwargs,
564     field_unit="kg.m^-2",
565     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
566     vmin=1,
567     vmax=1e4,
568     norm="log",
569     holywood_mode=True,
570     **sink_params,
571 )
572
573 vertical_density_plot.render_all(
574     **face_on_render_kwargs,
575     field_unit="kg.m^-3",
576     field_label="$\\rho$",
577     vmin=1e-10,
578     vmax=1e-6,
579     norm="log",
580     **sink_params,
581 )
582
583 v_z_slice_plot.render_all(
584     **face_on_render_kwargs,
585     field_unit="m.s^-1",
586     field_label="$\\mathrm{v}_z$",
587     cmap="seismic",
588     cmap_bad_color="white",
589     vmin=-300,
590     vmax=300,
591     **sink_params,
592 )
593
594 relative_azy_velocity_slice_plot.render_all(
595     **face_on_render_kwargs,
596     field_unit="m.s^-1",
597     field_label="$\\mathrm{v}_{\\theta} - v_k$",
598     cmap="seismic",
599     cmap_bad_color="white",
600     vmin=-300,
601     vmax=300,
602     **sink_params,
603 )
604
605 vertical_shear_gradient_slice_plot.render_all(
606     **face_on_render_kwargs,
607     field_unit="yr^-1",
608     field_label="${{\\partial R \\Omega}}/{{\\partial z}}$",
609     cmap="seismic",
610     cmap_bad_color="white",
611     vmin=-1,
612     vmax=1,
613     **sink_params,
614 )
615
616 dt_part_slice_plot.render_all(
617     **face_on_render_kwargs,
618     field_unit="year",
619     field_label="$\\Delta t$",
620     vmin=1e-4,
621     vmax=1,
622     norm="log",
623     contour_list=[1e-4, 1e-3, 1e-2, 1e-1, 1],
624     **sink_params,
625 )
626
627 column_particle_count_plot.render_all(
628     **face_on_render_kwargs,
629     field_unit=None,
630     field_label="$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
631     vmin=1,
632     vmax=1e2,
633     norm="log",
634     contour_list=[1, 10, 100, 1000],
635     **sink_params,
636 )
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_normal_0000030.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_integ_hollywood_0000030.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_rho_slice_0000030.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_v_z_slice_0000030.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_relative_azy_velocity_slice_0000030.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_vertical_shear_gradient_slice_0000030.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_dt_part_slice_0000030.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
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000030.png

Make gif for the doc (plot_to_gif.py)#

Convert PNG sequence to Image sequence in mpl

644 render_gif = True

Do it for rho integ

649 if render_gif:
650     ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
651     if ani is not None:
652         plt.show()

Same but in hollywood

657 if render_gif:
658     ani = column_density_plot_hollywood.render_gif(
659         gif_filename="rho_integ_hollywood.gif", save_animation=True
660     )
661     if ani is not None:
662         plt.show()

For the vertical density plot

666 if render_gif and shamrock.sys.world_rank() == 0:
667     ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
668     if ani is not None:
669         plt.show()

Make a gif from the plots

674 if render_gif and shamrock.sys.world_rank() == 0:
675     ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
676     if ani is not None:
677         plt.show()

Make a gif from the plots

682 if render_gif and shamrock.sys.world_rank() == 0:
683     ani = relative_azy_velocity_slice_plot.render_gif(
684         gif_filename="relative_azy_velocity_slice.gif", save_animation=True
685     )
686     if ani is not None:
687         plt.show()

Make a gif from the plots

691 if render_gif and shamrock.sys.world_rank() == 0:
692     ani = vertical_shear_gradient_slice_plot.render_gif(
693         gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
694     )
695     if ani is not None:
696         plt.show()

Make a gif from the plots

700 if render_gif and shamrock.sys.world_rank() == 0:
701     ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
702     if ani is not None:
703         plt.show()

Make a gif from the plots

707 if render_gif and shamrock.sys.world_rank() == 0:
708     ani = column_particle_count_plot.render_gif(
709         gif_filename="particle_count.gif", save_animation=True
710     )
711     if ani is not None:
712         plt.show()

helper function to load data from JSON files

717 def load_data_from_json(filename, key):
718     filepath = os.path.join(analysis_folder, filename)
719     with open(filepath, "r") as fp:
720         data = json.load(fp)[key]
721     t = [d["t"] for d in data]
722     values = [d[key] for d in data]
723     return t, values

load the json file for barycenter

728 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
729 barycenter_x = [d[0] for d in barycenter]
730 barycenter_y = [d[1] for d in barycenter]
731 barycenter_z = [d[2] for d in barycenter]
732
733 plt.figure(figsize=(8, 5), dpi=200)
734
735 plt.plot(t, barycenter_x)
736 plt.plot(t, barycenter_y)
737 plt.plot(t, barycenter_z)
738 plt.xlabel("t")
739 plt.ylabel("barycenter")
740 plt.legend(["x", "y", "z"])
741 plt.savefig(analysis_folder + "barycenter.png")
742 plt.show()
run circular disc sink

load the json file for disc_mass

746 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
747
748 plt.figure(figsize=(8, 5), dpi=200)
749
750 plt.plot(t, disc_mass)
751 plt.xlabel("t")
752 plt.ylabel("disc_mass")
753 plt.savefig(analysis_folder + "disc_mass.png")
754 plt.show()
run circular disc sink

load the json file for total_momentum

758 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
759 total_momentum_x = [d[0] for d in total_momentum]
760 total_momentum_y = [d[1] for d in total_momentum]
761 total_momentum_z = [d[2] for d in total_momentum]
762
763 plt.figure(figsize=(8, 5), dpi=200)
764
765 plt.plot(t, total_momentum_x)
766 plt.plot(t, total_momentum_y)
767 plt.plot(t, total_momentum_z)
768 plt.xlabel("t")
769 plt.ylabel("total_momentum")
770 plt.legend(["x", "y", "z"])
771 plt.savefig(analysis_folder + "total_momentum.png")
772 plt.show()
run circular disc sink

load the json file for energies

776 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
777 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
778
779 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
780
781 plt.figure(figsize=(8, 5), dpi=200)
782 plt.plot(t, potential_energy)
783 plt.plot(t, kinetic_energy)
784 plt.plot(t, total_energy)
785 plt.xlabel("t")
786 plt.ylabel("energy")
787 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
788 plt.savefig(analysis_folder + "energies.png")
789 plt.show()
run circular disc sink

load the json file for sinks

793 t, sinks = load_data_from_json("sinks.json", "sinks")
794
795 sinks_x = [d[0]["pos"][0] for d in sinks]
796 sinks_y = [d[0]["pos"][1] for d in sinks]
797 sinks_z = [d[0]["pos"][2] for d in sinks]
798
799 plt.figure(figsize=(8, 5), dpi=200)
800 plt.plot(t, sinks_x, label="sink 0 (x)")
801 plt.plot(t, sinks_y, label="sink 0 (y)")
802 plt.plot(t, sinks_z, label="sink 0 (z)")
803 plt.xlabel("t")
804 plt.ylabel("sink position")
805 plt.legend()
806 plt.savefig(analysis_folder + "sinks.png")
807 plt.show()
run circular disc sink

Sink to barycenter distance

811 t, sinks = load_data_from_json("sinks.json", "sinks")
812 _, barycenter = load_data_from_json("barycenter.json", "barycenter")
813
814 barycenter_x = np.array([d[0] for d in barycenter])
815 barycenter_y = np.array([d[1] for d in barycenter])
816 barycenter_z = np.array([d[2] for d in barycenter])
817
818 sinks_x = np.array([d[0]["pos"][0] for d in sinks])
819 sinks_y = np.array([d[0]["pos"][1] for d in sinks])
820 sinks_z = np.array([d[0]["pos"][2] for d in sinks])
821
822
823 plt.figure(figsize=(8, 5), dpi=200)
824 plt.plot(t, sinks_x - barycenter_x, label="sink 0 (x)")
825 plt.plot(t, sinks_y - barycenter_y, label="sink 0 (y)")
826 plt.plot(t, sinks_z - barycenter_z, label="sink 0 (z)")
827 plt.xlabel("t")
828 plt.ylabel("sink pos - barycenter pos")
829 plt.legend()
830 plt.savefig(analysis_folder + "sink_to_barycenter_distance.png")
831 plt.show()
run circular disc sink

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

836 perf_analysis.plot_perf_history(close_plots=False)
837 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: (15 minutes 44.453 seconds)

Estimated memory usage: 2183 MB

Gallery generated by Sphinx-Gallery