Production run: Circular disc & central potential#

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

The simulation models:

  • A central star with a given mass and accretion radius

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

  • Artificial viscosity for angular momentum transport

  • Locally isothermal equation of state

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

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

  • The actual run script (runscript.py)

  • Plot generation (make_plots.py)

  • Animation from the plots (plot_to_gif.py)

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

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

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

python make_plots.py

Runscript (runscript.py)#

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

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

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_central_pot_{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_ext_force_point_mass(center_mass, center_racc)
215     cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize)  # kill particles outside the simulation box
216
217     cfg.set_units(codeu)
218     cfg.set_particle_mass(pmass)
219     # Set the CFL
220     cfg.set_cfl_cour(C_cour)
221     cfg.set_cfl_force(C_force)
222
223     # Enable this to debug the neighbor counts
224     # cfg.set_show_neigh_stats(True)
225
226     # Standard way to set the smoothing length (e.g. Price et al. 2018)
227     cfg.set_smoothing_length_density_based()
228
229     # Standard density based smoothing lenght but with a neighbor count limit
230     # Use it if you have large slowdowns due to giant particles
231     # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
232     # cfg.set_smoothing_length_density_based_neigh_lim(500)
233
234     cfg.set_save_dt_to_fields(True)
235
236     # Set the solver config to be the one stored in cfg
237     model.set_solver_config(cfg)
238
239     # Print the solver config
240     model.get_current_config().print_status()
241
242     # Init the scheduler & fields
243     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
244
245     # Set the simulation box size
246     model.resize_simulation_box(bmin, bmax)
247
248     # Create the setup
249
250     setup = model.get_setup()
251     gen_disc = setup.make_generator_disc_mc(
252         part_mass=pmass,
253         disc_mass=disc_mass,
254         r_in=rin,
255         r_out=rout,
256         sigma_profile=sigma_profile,
257         H_profile=H_profile,
258         rot_profile=rot_profile,
259         cs_profile=cs_profile,
260         random_seed=666,
261     )
262
263     # Print the dot graph of the setup
264     print(gen_disc.get_dot())
265
266     # Apply the setup
267     setup.apply_setup(gen_disc)
268
269     # correct the momentum and barycenter of the disc to 0
270     analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
271     total_momentum = analysis_momentum.get_total_momentum()
272
273     if shamrock.sys.world_rank() == 0:
274         print(f"disc momentum = {total_momentum}")
275
276     model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
277
278     # Correct the barycenter
279     analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
280     barycenter, disc_mass = analysis_barycenter.get_barycenter()
281
282     if shamrock.sys.world_rank() == 0:
283         print(f"disc barycenter = {barycenter}")
284
285     model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
286
287     total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
288
289     if shamrock.sys.world_rank() == 0:
290         print(f"disc momentum after correction = {total_momentum}")
291
292     barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
293
294     if shamrock.sys.world_rank() == 0:
295         print(f"disc barycenter after correction = {barycenter}")
296
297     if not np.allclose(total_momentum, 0.0):
298         raise RuntimeError("disc momentum is not 0")
299     if not np.allclose(barycenter, 0.0):
300         raise RuntimeError("disc barycenter is not 0")
301
302     # Run a single step to init the integrator and smoothing length of the particles
303     # Here the htolerance is the maximum factor of evolution of the smoothing length in each
304     # Smoothing length iterations, increasing it affect the performance negatively but increse the
305     # convergence rate of the smoothing length
306     # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
307     # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
308     # more slowly at the first timestep
309
310     model.change_htolerances(coarse=1.3, fine=1.1)
311     model.timestep()
312     model.change_htolerances(coarse=1.1, fine=1.1)
313
314
315 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": [
                {
                    "Racc": 0.1,
                    "central_mass": 1.0,
                    "force_type": "point_mass"
                }
            ]
        },
        "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.699475e+05 N.s^-1
SPH setup: the generation step took : 0.390420152 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     : 8.57 us    (62.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     : 2.00 us    (0.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.2%)
   LB compute        : 542.55 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 13.49 us   (2.4%)
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    (67.7%)
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     : 1212.00 ns (0.3%)
   patch tree reduce : 521.00 ns  (0.1%)
   gen split merge   : 410.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.1%)
   LB compute        : 418.57 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.07 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.50 us    (66.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     : 1212.00 ns (0.3%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 437.46 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.5%)
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.016135226000000003 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.4279105 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     : 5.95 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 410.95 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.5%)
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 = (-5.41064607239581e-05,-0.00011583745354600668,-1.9228980925820012e-05)
    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.1209e+04 | 100000 |      1 | 3.204e+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

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

Evolve the simulation

491 model.solver_logs_reset_cumulated_step_time()
492 model.solver_logs_reset_step_count()
493
494 t_start = model.get_time()
495
496 idump = 0
497 iplot = 0
498 istop = 0
499 for ttarg in t_stop:
500     if ttarg >= t_start:
501         model.evolve_until(ttarg)
502
503         if istop % dump_freq_stop == 0:
504             model.do_vtk_dump(get_vtk_dump_name(idump), True)
505             dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
506
507             # dump = model.make_phantom_dump()
508             # dump.save_dump(get_ph_dump_name(idump))
509
510         if istop % plot_freq_stop == 0:
511             analysis(iplot)
512
513     if istop % dump_freq_stop == 0:
514         idump += 1
515
516     if istop % plot_freq_stop == 0:
517         iplot += 1
518
519     istop += 1
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 3146.8046138560003 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.vtk   [VTK Dump][rank=0]
              - took 30.14 ms, bandwidth = 177.18 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.24 us    (33.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
              - took 34.19 ms, bandwidth = 357.17 MB/s
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_central_pot_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1996.94 ms                           [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 722.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.40 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_central_pot_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000000.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 692.93 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_central_pot_100000/analysis/plots/v_z_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.060983483000000005 s
Info: compute_slice took 1279.05 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.59 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022712319 s
Info: compute_slice took 1242.28 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.30 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1226.13 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.53 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1997.40 ms                           [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_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     : 7.72 us    (1.4%)
   patch tree reduce : 2.33 us    (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 513.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 12.08 us   (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (68.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2382648833864775e-09,-9.073774285562308e-09,-1.5062436816707e-09)
    sum a = (-5.414549273838628e-05,-0.00011592916314151505,-1.922894206238627e-05)
    sum e = 0.050002973171415624
    sum de = 1.0476986723218048e-05
Info: CFL hydro = 0.0026632979621550312 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0026632979621550312 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.6671e+05 | 100000 |      1 | 5.999e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4701015717507898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.833195568092592e-05, dt = 0.0026632979621550312 ----------------
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.4%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 1372.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 455.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.48445374084136e-07,-3.1783127012927537e-07,-5.271864436869699e-08)
    sum a = (-5.5402858999974385e-05,-0.000119107586910403,-1.9226514546375795e-05)
    sum e = 0.05000502786345024
    sum de = 2.2808420068083283e-05
Info: CFL hydro = 0.004305100970696003 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004305100970696003 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.6549e+05 | 100000 |      1 | 6.043e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.866771352161393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.002741629917835957, dt = 0.004305100970696003 ----------------
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 : 2.05 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.2%)
   LB compute        : 396.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8863464664325416e-07,-8.348340029264278e-07,-1.3548749820617823e-07)
    sum a = (-5.714073478830272e-05,-0.00012448434310157307,-1.9218046179060204e-05)
    sum e = 0.050008413416371605
    sum de = 4.257490837173211e-05
Info: CFL hydro = 0.005275348061182333 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005275348061182333 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.6559e+05 | 100000 |      1 | 6.039e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.663292321770232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00704673088853196, dt = 0.00295326911146804 ----------------
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.7%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 421.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.611274790694665e-07,-1.214043507428667e-06,-1.9222533178138826e-07)
    sum a = (-5.8114997853415354e-05,-0.00012833503819477044,-1.9208988486299412e-05)
    sum e = 0.05000577627928519
    sum de = 5.65045887457463e-05
Info: CFL hydro = 0.005902529477645292 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005902529477645292 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.6599e+05 | 100000 |      1 | 6.025e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.647418579389765 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 3166.264567147 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1999.62 ms                           [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.05 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000001.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 687.92 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.99 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.049184558 s
Info: compute_slice took 1267.32 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.60 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022989893 s
Info: compute_slice took 1244.89 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1223.41 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1224.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.35 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000001.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.01, dt = 0.005902529477645292 ----------------
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.99 us    (1.6%)
   patch tree reduce : 2.38 us    (0.6%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 410.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.055915974940375e-07,-1.977230922820334e-06,-3.0559357765539357e-07)
    sum a = (-5.950200010391242e-05,-0.00013639219506724268,-1.9182968771840516e-05)
    sum e = 0.050013595461709595
    sum de = 8.321964369365707e-05
Info: CFL hydro = 0.006896793722792833 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006896793722792833 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.6428e+05 | 100000 |      1 | 6.087e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.9077329838306 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.015902529477645293, dt = 0.004097470522354707 ----------------
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.83 us    (2.0%)
   patch tree reduce : 1774.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 363.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1534926997843683e-06,-2.559872724566148e-06,-3.841184356634645e-07)
    sum a = (-6.0010029323521424e-05,-0.00014224577405401705,-1.9158696698067745e-05)
    sum e = 0.05000885823519893
    sum de = 0.00010278015100561356
Info: CFL hydro = 0.007165314836586377 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007165314836586377 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.6526e+05 | 100000 |      1 | 6.051e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.37799832733922 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 3184.3961474440002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.vtk   [VTK Dump][rank=0]
              - took 8.13 ms, bandwidth = 657.25 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (54.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.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.00 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 720.06 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000002.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 687.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.88 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051461391 s
Info: compute_slice took 1275.82 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.86 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022064141000000002 s
Info: compute_slice took 1244.98 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.59 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1227.21 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.27 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.02, dt = 0.007165314836586377 ----------------
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.21 us    (1.5%)
   patch tree reduce : 2.60 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 462.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.584524270614318e-06,-3.5911009135081343e-06,-5.213468023103875e-07)
    sum a = (-5.995279496089463e-05,-0.00015292006101695412,-1.9104038805492272e-05)
    sum e = 0.0500195077223299
    sum de = 0.00013479815564190832
Info: CFL hydro = 0.007254296311274274 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007254296311274274 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.6158e+05 | 100000 |      1 | 6.189e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.680323714188546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02716531483658638, dt = 0.0028346851634136194 ----------------
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.6%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.3%)
   LB compute        : 380.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.754266517881612e-06,-4.062823455034322e-06,-5.753049171692904e-07)
    sum a = (-5.958929580947874e-05,-0.00015727925716865434,-1.9078129682330588e-05)
    sum e = 0.05000763582715896
    sum de = 0.00014929818035856981
Info: CFL hydro = 0.007371059383713983 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007371059383713983 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.6372e+05 | 100000 |      1 | 6.108e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.707600859311764 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 3202.5754059130004 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.00 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.52 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000003.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 688.47 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.13 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051059298 s
Info: compute_slice took 1271.84 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.24 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021459273 s
Info: compute_slice took 1249.83 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.32 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1224.65 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.99 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.03, dt = 0.007371059383713983 ----------------
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.6%)
   patch tree reduce : 2.38 us    (0.6%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 396.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1929875531059364e-06,-5.228316673783803e-06,-7.158942218844359e-07)
    sum a = (-5.769657725790396e-05,-0.00016889604749534956,-1.8999416387306235e-05)
    sum e = 0.05002198259379795
    sum de = 0.00018201582179873832
Info: CFL hydro = 0.007487629996111187 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007487629996111187 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.6140e+05 | 100000 |      1 | 6.196e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.82901804443664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03737105938371398, dt = 0.0026289406162860185 ----------------
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.55 us    (1.7%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 360.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3376927580522504e-06,-5.715148378634711e-06,-7.655524591247961e-07)
    sum a = (-5.6686045642512053e-05,-0.00017312281449646092,-1.8967389611713033e-05)
    sum e = 0.05000904083141202
    sum de = 0.00019580957568369656
Info: CFL hydro = 0.007424416986969324 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007424416986969324 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.6477e+05 | 100000 |      1 | 6.069e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.594379804208481 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 3220.7243688390004 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.vtk   [VTK Dump][rank=0]
              - took 8.01 ms, bandwidth = 667.17 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (52.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
              - took 11.47 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.38 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000004.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 688.99 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 717.13 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050687033000000006 s
Info: compute_slice took 1288.10 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1295.57 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021966919 s
Info: compute_slice took 1254.73 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.55 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1241.83 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.97 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.04, dt = 0.007424416986969324 ----------------
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.89 us    (1.7%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 443.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7572252844466814e-06,-7.006040303137109e-06,-9.063321705108801e-07)
    sum a = (-5.284490881910011e-05,-0.00018521181544718697,-1.8865762159380973e-05)
    sum e = 0.050024284727416365
    sum de = 0.00022870386023128277
Info: CFL hydro = 0.007027005849700676 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.007027005849700676 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.6133e+05 | 100000 |      1 | 6.198e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.121315146072 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.04742441698696932, dt = 0.00257558301303068 ----------------
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.67 us    (1.6%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 408.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (73.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.879072633182653e-06,-7.527945600828755e-06,-9.545452447647415e-07)
    sum a = (-5.116971442716231e-05,-0.00018944328295414131,-1.8826665732141776e-05)
    sum e = 0.050011151213686454
    sum de = 0.00024239743776736266
Info: CFL hydro = 0.0069331249406501564 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0069331249406501564 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.6419e+05 | 100000 |      1 | 6.091e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.22368665805719 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 3239.041604075 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 725.09 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 717.84 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000005.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 688.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051088986 s
Info: compute_slice took 1281.50 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.74 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022029412 s
Info: compute_slice took 1256.76 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.95 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1244.93 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.79 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.05, dt = 0.0069331249406501564 ----------------
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.33 us    (1.7%)
   patch tree reduce : 2.46 us    (0.6%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 417.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2316813553764034e-06,-8.846828798637984e-06,-1.0850225224546055e-06)
    sum a = (-4.576095096139548e-05,-0.00020085432459951582,-1.8711641823806214e-05)
    sum e = 0.050024687192738906
    sum de = 0.0002733550302679461
Info: CFL hydro = 0.0066123022628687455 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0066123022628687455 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.6272e+05 | 100000 |      1 | 6.145e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.614370614304214 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05693312494065016, dt = 0.003066875059349841 ----------------
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 : 1893.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 400.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3532746581287764e-06,-9.502381006022483e-06,-1.1420100525196999e-06)
    sum a = (-4.294954990758521e-05,-0.0002058927211260561,-1.8656240190628856e-05)
    sum e = 0.05001459335973286
    sum de = 0.0002891193408272681
Info: CFL hydro = 0.00650574129671766 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00650574129671766 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.6452e+05 | 100000 |      1 | 6.078e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.16457305339678 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 3257.283453629 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.vtk   [VTK Dump][rank=0]
              - took 8.06 ms, bandwidth = 662.42 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (57.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
              - took 11.34 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.69 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.74 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 693.35 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.57 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051019794 s
Info: compute_slice took 1281.28 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.22 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022380058 s
Info: compute_slice took 1252.86 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.38 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1234.38 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.42 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000006.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.06, dt = 0.00650574129671766 ----------------
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.7%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 410.62 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.628382210751721e-06,-1.0849591850867371e-05,-1.2632977698258363e-06)
    sum a = (-3.612328095541928e-05,-0.00021649140053688846,-1.852960057843131e-05)
    sum e = 0.05002590665515336
    sum de = 0.0003183609292446872
Info: CFL hydro = 0.006259339976005915 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006259339976005915 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.6195e+05 | 100000 |      1 | 6.175e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.930248249065066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06650574129671766, dt = 0.003494258703282349 ----------------
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.7%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 380.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7324013297069596e-06,-1.1640544944547451e-05,-1.3276330456379267e-06)
    sum a = (-3.197454604006721e-05,-0.0002221099566005003,-1.8456513740060263e-05)
    sum e = 0.050018514091891675
    sum de = 0.000335871261297103
Info: CFL hydro = 0.006150597896900742 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006150597896900742 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.6438e+05 | 100000 |      1 | 6.083e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.678262365747724 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 3275.529402438 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 718.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 719.05 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000007.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 734.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 717.32 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051665373 s
Info: compute_slice took 1292.49 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1250.99 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022401828000000002 s
Info: compute_slice took 1263.43 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1248.61 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1248.65 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1289.87 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000007.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.07, dt = 0.006150597896900742 ----------------
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.11 us    (1.9%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 397.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.921815528797629e-06,-1.3016470320713807e-05,-1.441023948071124e-06)
    sum a = (-2.38499070381222e-05,-0.00023180874393071148,-1.831934126795308e-05)
    sum e = 0.050027937178332114
    sum de = 0.000363622336148061
Info: CFL hydro = 0.006137699298270516 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006137699298270516 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.6178e+05 | 100000 |      1 | 6.181e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.82230374050738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07615059789690075, dt = 0.003849402103099253 ----------------
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.8%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 348.76 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.988637717325886e-06,-1.3938622057579242e-05,-1.5111206125161485e-06)
    sum a = (-1.823620638713853e-05,-0.00023772626008309187,-1.8228024419875633e-05)
    sum e = 0.050022848983678335
    sum de = 0.0003825110112219309
Info: CFL hydro = 0.00605694955039346 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00605694955039346 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.6260e+05 | 100000 |      1 | 6.150e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.533545422362597 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 3293.9331421260003 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.vtk   [VTK Dump][rank=0]
              - took 7.99 ms, bandwidth = 668.53 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (53.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
              - took 11.40 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.14 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.55 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000008.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 716.14 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.06 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050051626 s
Info: compute_slice took 1291.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.87 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.023289756 s
Info: compute_slice took 1264.01 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1243.34 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1244.94 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1245.18 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000008.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.08, dt = 0.00605694955039346 ----------------
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.7%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 403.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0882888038546525e-06,-1.538990747128186e-05,-1.6213510791971532e-06)
    sum a = (-8.583539522885837e-06,-0.0002467345616699609,-1.807591771018755e-05)
    sum e = 0.05003146186788363
    sum de = 0.00040974992085482165
Info: CFL hydro = 0.005846817057144491 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005846817057144491 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.6080e+05 | 100000 |      1 | 6.219e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.06326900882726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08605694955039346, dt = 0.003943050449606536 ----------------
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 : 2.34 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 353.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.09290127512231e-06,-1.6390075709721997e-05,-1.6921646833179365e-06)
    sum a = (-1.7693829708128268e-06,-0.0002523695274413115,-1.797144210100551e-05)
    sum e = 0.05002711857012222
    sum de = 0.00042891782181672097
Info: CFL hydro = 0.005704360613177093 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005704360613177093 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.6333e+05 | 100000 |      1 | 6.123e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.18465302650791 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 3312.279757272 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 721.28 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 720.47 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000009.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 707.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 722.81 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051756245000000006 s
Info: compute_slice took 1298.69 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1253.40 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021819193 s
Info: compute_slice took 1265.05 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1254.42 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1257.32 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1251.75 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000009.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.09, dt = 0.005704360613177093 ----------------
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.92 us    (1.8%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 430.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0895601921197165e-06,-1.78407919791837e-05,-1.7944742935020226e-06)
    sum a = (8.817809983939762e-06,-0.00026014384657397656,-1.7812786670096677e-05)
    sum e = 0.050034472327507316
    sum de = 0.0004545187370672368
Info: CFL hydro = 0.00550862635648563 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00550862635648563 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.6248e+05 | 100000 |      1 | 6.155e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.36648725704715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0957043606131771, dt = 0.004295639386822911 ----------------
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.45 us    (1.6%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 373.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.021485477001451e-06,-1.8980449892703828e-05,-1.8705390876155928e-06)
    sum a = (1.7346844764944164e-05,-0.00026566966107524354,-1.7687538326065615e-05)
    sum e = 0.05003247105388551
    sum de = 0.00047487067384677147
Info: CFL hydro = 0.006151260775230467 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.006151260775230467 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.6028e+05 | 100000 |      1 | 6.239e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.785764660052486 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 3330.6678159370003 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.vtk   [VTK Dump][rank=0]
              - took 8.13 ms, bandwidth = 657.33 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.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_central_pot_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
              - took 11.42 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 721.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 724.11 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000010.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 725.88 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.049924420000000004 s
Info: compute_slice took 1298.15 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1252.35 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02246576 s
Info: compute_slice took 1271.96 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1251.63 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1256.08 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1253.46 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.1, dt = 0.006151260775230467 ----------------
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.1%)
   patch tree reduce : 2.02 us    (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.1%)
   LB compute        : 662.30 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (73.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.896461682353751e-06,-2.062652171124674e-05,-1.979070737471233e-06)
    sum a = (3.037113954252192e-05,-0.0002730237149368871,-1.749967723595896e-05)
    sum e = 0.05004099916696257
    sum de = 0.0005019259161877091
Info: CFL hydro = 0.005907960953798215 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005907960953798215 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.6160e+05 | 100000 |      1 | 6.188e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.78461856963966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10615126077523047, dt = 0.0038487392247695262 ----------------
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    (2.0%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 351.67 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (68.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.739513169501933e-06,-2.1699937143748965e-05,-2.0458446403926892e-06)
    sum a = (3.8989849425598926e-05,-0.000277261146603163,-1.7377126786636514e-05)
    sum e = 0.050036420703309006
    sum de = 0.0005204156064907399
Info: CFL hydro = 0.005770151728232825 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005770151728232825 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.5978e+05 | 100000 |      1 | 6.259e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.13799506032576 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 3349.1003709760002 (s)                                       [SPH][rank=0]
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_central_pot_100000/analysis/plots/rho_integ_normal_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.28 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.36 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000011.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 718.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.57 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050287997 s
Info: compute_slice took 1292.51 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1245.95 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022111298 s
Info: compute_slice took 1267.23 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1250.38 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1252.42 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.73 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000011.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.11, dt = 0.005770151728232825 ----------------
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.94 us    (1.4%)
   patch tree reduce : 2.21 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 491.27 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4979502390539096e-06,-2.330793041272256e-05,-2.145877466191659e-06)
    sum a = (5.256452518552724e-05,-0.0002830329233355534,-1.7186279011592443e-05)
    sum e = 0.05004476883100962
    sum de = 0.0005454582641240164
Info: CFL hydro = 0.005571011968887644 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005571011968887644 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.5870e+05 | 100000 |      1 | 6.301e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.965474771540876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11577015172823282, dt = 0.004229848271767173 ----------------
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.04 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 397.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (44.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.236446303653392e-06,-2.452176874809805e-05,-2.2180222084574523e-06)
    sum a = (6.299237582952178e-05,-0.00028679099319909814,-1.7041045964013687e-05)
    sum e = 0.05004273559420364
    sum de = 0.0005650438414234771
Info: CFL hydro = 0.005437711935288798 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005437711935288798 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.6266e+05 | 100000 |      1 | 6.148e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.769443568148024 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 3367.482397575 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.vtk   [VTK Dump][rank=0]
              - took 7.98 ms, bandwidth = 668.96 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (52.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
              - took 11.42 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.48 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.18 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000012.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 737.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.62 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.049489967 s
Info: compute_slice took 1295.66 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1245.57 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022465298 s
Info: compute_slice took 1265.16 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1243.62 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1247.52 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.06 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.12, dt = 0.005437711935288798 ----------------
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.84 us    (1.7%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 385.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.871857796752624e-06,-2.6089203587400583e-05,-2.310379350608113e-06)
    sum a = (7.696179305393486e-05,-0.00029098576933770477,-1.6847820289061587e-05)
    sum e = 0.050049212513248564
    sum de = 0.0005884443317307032
Info: CFL hydro = 0.0052737910228563695 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0052737910228563695 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.6182e+05 | 100000 |      1 | 6.180e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.677407036521917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1254377119352888, dt = 0.004562288064711206 ----------------
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.82 us    (1.7%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 377.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4827550934807617e-06,-2.7428169481989673e-05,-2.386718607249862e-06)
    sum a = (8.914446347514498e-05,-0.0002939200715290346,-1.6680142645310013e-05)
    sum e = 0.05004945371607798
    sum de = 0.000608775473872124
Info: CFL hydro = 0.005146949656574858 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005146949656574858 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.6220e+05 | 100000 |      1 | 6.165e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.640270546404814 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 3385.883426919 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 717.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.55 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000013.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 736.90 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.30 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050663905 s
Info: compute_slice took 1292.72 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.24 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021927468000000002 s
Info: compute_slice took 1263.00 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1237.54 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1256.70 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_central_pot_100000/analysis/plots/dt_part_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000013.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.13, dt = 0.005146949656574858 ----------------
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.21 us    (1.5%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 457.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.99614260188209e-06,-2.8947654859143663e-05,-2.4721879648533562e-06)
    sum a = (0.0001033619173422768,-0.00029654809574518337,-1.6484989761281702e-05)
    sum e = 0.05005427583198843
    sum de = 0.0006306425438658724
Info: CFL hydro = 0.005011058434934327 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005011058434934327 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.6196e+05 | 100000 |      1 | 6.175e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.00890280544799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13514694965657487, dt = 0.004853050343425147 ----------------
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.10 us    (1.8%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 384.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4579337537777973e-06,-3.0393580851208872e-05,-2.551688229040994e-06)
    sum a = (0.00011719360838862048,-0.0002983290089893736,-1.6295270448538075e-05)
    sum e = 0.05005655689053951
    sum de = 0.0006513810775804901
Info: CFL hydro = 0.005092429851184004 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005092429851184004 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.6082e+05 | 100000 |      1 | 6.218e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.0965606127612 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 3404.2319000400003 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.vtk   [VTK Dump][rank=0]
              - took 8.04 ms, bandwidth = 664.45 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (53.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
              - took 11.39 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 713.27 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 759.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 712.69 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.72 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051026233000000004 s
Info: compute_slice took 1289.73 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1237.13 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022073481000000002 s
Info: compute_slice took 1258.78 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.07 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1243.49 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_central_pot_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.14, dt = 0.005092429851184004 ----------------
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.7%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 408.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.275705775582139e-07,-3.1917121832873386e-05,-2.634210392018307e-06)
    sum a = (0.00013211359260540935,-0.0002994329199556627,-1.6090339765713584e-05)
    sum e = 0.05006062121267347
    sum de = 0.0006724990942802373
Info: CFL hydro = 0.004924277357294191 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004924277357294191 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.5973e+05 | 100000 |      1 | 6.261e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.2831408565447 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.145092429851184, dt = 0.004907570148815987 ----------------
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 : 1763.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 353.12 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4122436773686218e-07,-3.3389420687002224e-05,-2.7126530655735097e-06)
    sum a = (0.00014684587531763583,-0.0002997229795699968,-1.5887279676710226e-05)
    sum e = 0.050063453109112206
    sum de = 0.000692711091768811
Info: CFL hydro = 0.00477600775606726 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00477600775606726 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.6132e+05 | 100000 |      1 | 6.199e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50120632851884 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 3422.586452588 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.01 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 711.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.52 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000015.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 731.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.12 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051097941 s
Info: compute_slice took 1279.96 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.28 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021325194000000002 s
Info: compute_slice took 1248.92 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.80 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1234.63 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.95 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000015.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.15, dt = 0.00477600775606726 ----------------
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.87 us    (1.8%)
   patch tree reduce : 2.29 us    (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 402.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.962625271583817e-07,-3.482161170604164e-05,-2.7880325707166856e-06)
    sum a = (0.0001614776457707377,-0.0002992466653207533,-1.5684507346963558e-05)
    sum e = 0.05006645310361424
    sum de = 0.0007119969065953722
Info: CFL hydro = 0.0051352577460522355 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051352577460522355 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.6190e+05 | 100000 |      1 | 6.177e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.835821873626998 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15477600775606726, dt = 0.0051352577460522355 ----------------
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    (2.0%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 344.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4604325830011504e-06,-3.635718302184162e-05,-2.8680923374534012e-06)
    sum a = (0.0001774885502377316,-0.0002978687490696012,-1.5460902571955757e-05)
    sum e = 0.050071196942682174
    sum de = 0.0007319718693946487
Info: CFL hydro = 0.005016333112992526 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005016333112992526 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.6171e+05 | 100000 |      1 | 6.184e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.895649893144583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15991126550211948, dt = 8.873449788052157e-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.75 us    (1.7%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 385.99 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.517292000987615e-06,-3.638007627818468e-05,-2.868890118803452e-06)
    sum a = (0.000177767448694724,-0.00029783695120928706,-1.5456988829719894e-05)
    sum e = 0.05006367827043118
    sum de = 0.000733531526631927
Info: CFL hydro = 0.005016949852681989 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005016949852681989 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.6712e+05 | 100000 |      1 | 5.984e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5338435290790084 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 3441.461728784 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.vtk   [VTK Dump][rank=0]
              - took 8.00 ms, bandwidth = 667.35 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (56.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
              - took 11.51 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.99 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000016.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 714.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.41 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.051022296 s
Info: compute_slice took 1283.76 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.95 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021917559 s
Info: compute_slice took 1260.34 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_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1250.71 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.53 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000016.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.16, dt = 0.005016949852681989 ----------------
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.57 us    (1.8%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 404.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4091547504800188e-06,-3.787430791588563e-05,-2.946436882993639e-06)
    sum a = (0.00019364346584230352,-0.00029558107531252906,-1.5232950685922805e-05)
    sum e = 0.050074652626079685
    sum de = 0.0007515988894465148
Info: CFL hydro = 0.004907313632701614 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004907313632701614 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.5956e+05 | 100000 |      1 | 6.267e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.818427691408807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.165016949852682, dt = 0.004907313632701614 ----------------
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.5%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 403.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3992485612362827e-06,-3.931915814821225e-05,-3.020627755494684e-06)
    sum a = (0.00020934333356120371,-0.0002924947014101171,-1.5008642194077558e-05)
    sum e = 0.05007808621776376
    sum de = 0.0007699597942062616
Info: CFL hydro = 0.004810065937145344 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004810065937145344 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.6131e+05 | 100000 |      1 | 6.199e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49775840208849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16992426348538361, dt = 7.573651461639797e-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     : 7.06 us    (1.9%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 353.35 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4536255831222544e-06,-3.9333737775081544e-05,-3.0212140816836065e-06)
    sum a = (0.00020958669896826139,-0.0002924401871165976,-1.5005140906185101e-05)
    sum e = 0.050071199807542356
    sum de = 0.0007713872541006449
Info: CFL hydro = 0.004811335418087975 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004811335418087975 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.6781e+05 | 100000 |      1 | 5.959e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4575366793388286 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 3460.4123360420003 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.22 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000017.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 715.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 715.02 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050667718 s
Info: compute_slice took 1291.33 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1268.27 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021746482 s
Info: compute_slice took 1262.97 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1248.91 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1252.18 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.90 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000017.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.17, dt = 0.004811335418087975 ----------------
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.84 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 434.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.462026706849869e-06,-4.0740763540666416e-05,-3.093408714991264e-06)
    sum a = (0.00022509729504562774,-0.00028853505868535375,-1.4780251740624956e-05)
    sum e = 0.05008163631657424
    sum de = 0.0007877223133348864
Info: CFL hydro = 0.004719912218402795 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004719912218402795 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.6089e+05 | 100000 |      1 | 6.215e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.868042086582975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.174811335418088, dt = 0.004719912218402795 ----------------
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.5%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 407.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.56177952020202e-06,-4.209322924821864e-05,-3.1626291971692083e-06)
    sum a = (0.00024037779076100565,-0.0002838540347289303,-1.4554986285193722e-05)
    sum e = 0.05008515463866579
    sum de = 0.0008043427322295175
Info: CFL hydro = 0.0051739052449294625 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0051739052449294625 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.6142e+05 | 100000 |      1 | 6.195e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.427134816141667 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17953124763649078, dt = 0.0004687523635092117 ----------------
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 : 2.01 us    (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 362.50 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.7105184769631e-06,-4.2215239486808356e-05,-3.1689202648034998e-06)
    sum a = (0.0002418970684582434,-0.0002833429287231346,-1.4532365957030986e-05)
    sum e = 0.05007915205780197
    sum de = 0.0008070784489291518
Info: CFL hydro = 0.005142752087051784 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.005142752087051784 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.6098e+05 | 100000 |      1 | 6.212e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.716611855803862 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 42                                                      [SPH][rank=0]
Info: time since start : 3479.407418433 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.vtk   [VTK Dump][rank=0]
              - took 8.00 ms, bandwidth = 667.55 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (55.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
              - took 11.45 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.93 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000018.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 713.58 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 718.58 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050694344 s
Info: compute_slice took 1285.02 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1245.07 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021692326 s
Info: compute_slice took 1253.86 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.04 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1241.67 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1243.85 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000018.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.18, dt = 0.005142752087051784 ----------------
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.36 us    (1.7%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 411.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.954891213135061e-06,-4.3672282133778204e-05,-3.2436513184926786e-06)
    sum a = (0.0002585628721102471,-0.00027717302798597885,-1.428123826451474e-05)
    sum e = 0.05009094401209659
    sum de = 0.0008230275407816299
Info: CFL hydro = 0.00504320013449204 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00504320013449204 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.6108e+05 | 100000 |      1 | 6.208e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82222588756076 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18514275208705178, dt = 0.004857247912948226 ----------------
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.94 us    (1.8%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 352.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.253649232314853e-06,-4.5002715110536305e-05,-3.3123730895148964e-06)
    sum a = (0.0002742603803890978,-0.0002703977413793435,-1.4039131784208245e-05)
    sum e = 0.05009416844682711
    sum de = 0.0008388952136858661
Info: CFL hydro = 0.004847683813663419 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004847683813663419 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.6053e+05 | 100000 |      1 | 6.229e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.070736988282693 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 3497.736187813 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000019.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 743.06 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 726.48 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050763683000000004 s
Info: compute_slice took 1290.48 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.49 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021698210000000002 s
Info: compute_slice took 1260.64 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.69 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1250.62 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.73 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000019.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.19, dt = 0.004847683813663419 ----------------
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.37 us    (1.8%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 389.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.621300183717486e-06,-4.6297063241314374e-05,-3.3798423758250096e-06)
    sum a = (0.00028983031001924474,-0.00026270767323483815,-1.3792768134201901e-05)
    sum e = 0.05009825933761423
    sum de = 0.0008538910708955308
Info: CFL hydro = 0.004669157459238623 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004669157459238623 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.6138e+05 | 100000 |      1 | 6.197e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.163707659676902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1948476838136634, dt = 0.004669157459238623 ----------------
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.07 us    (1.4%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 415.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1012302585586201e-05,-4.7505047223959274e-05,-3.4436458355031667e-06)
    sum a = (0.0003046841780360191,-0.000254418539751446,-1.3551029826320981e-05)
    sum e = 0.05010179886425145
    sum de = 0.0008677789340885621
Info: CFL hydro = 0.0045114320284078534 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0045114320284078534 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.6126e+05 | 100000 |      1 | 6.201e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.106834141861487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19951684127290203, dt = 0.00048315872709797647 ----------------
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.6%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 398.73 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1194190929538328e-05,-4.7608620127054276e-05,-3.4496287767132015e-06)
    sum a = (0.0003062112674100481,-0.0002535115524592336,-1.352576781854251e-05)
    sum e = 0.050095940297609276
    sum de = 0.0008703555122625401
Info: CFL hydro = 0.0044962976139667635 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0044962976139667635 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.6525e+05 | 100000 |      1 | 6.051e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.874318703971956 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 47                                                      [SPH][rank=0]
Info: time since start : 3516.731932345 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.vtk   [VTK Dump][rank=0]
              - took 8.03 ms, bandwidth = 664.83 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (55.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
              - took 11.43 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 710.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.89 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000020.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 710.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 708.07 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050238481 s
Info: compute_slice took 1284.70 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.29 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021521334000000003 s
Info: compute_slice took 1256.21 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.01 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1280.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.76 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.2, dt = 0.0044962976139667635 ----------------
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.62 us    (1.7%)
   patch tree reduce : 2.48 us    (0.6%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 421.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2571376833837726e-05,-4.874826440608393e-05,-3.5104385515030174e-06)
    sum a = (0.0003203139165377716,-0.00024462171279032187,-1.3288436738467325e-05)
    sum e = 0.05010570787059531
    sum de = 0.0008818602691166807
Info: CFL hydro = 0.0043572884213675936 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0043572884213675936 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.6126e+05 | 100000 |      1 | 6.201e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.102897058337696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2044962976139668, dt = 0.0043572884213675936 ----------------
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.99 us    (1.7%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 388.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (73.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3998781807382163e-05,-4.9794166080387505e-05,-3.567806547457079e-06)
    sum a = (0.00033376426547830244,-0.0002352382347852529,-1.3054604999891635e-05)
    sum e = 0.050109228756035955
    sum de = 0.0008934792408447885
Info: CFL hydro = 0.0042331902575895005 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0042331902575895005 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.6119e+05 | 100000 |      1 | 6.204e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.2850766743686 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.20885358603533438, dt = 0.0011464139646656102 ----------------
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.8%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 351.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4410717347084292e-05,-5.0043403217744114e-05,-3.582263092768633e-06)
    sum a = (0.00033726255605410864,-0.00023264464743549593,-1.2992458612784346e-05)
    sum e = 0.05010509468097929
    sum de = 0.0008974493879301529
Info: CFL hydro = 0.004202940046141644 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004202940046141644 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.6200e+05 | 100000 |      1 | 6.173e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.686016972148771 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 50                                                      [SPH][rank=0]
Info: time since start : 3535.699259756 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 717.05 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 709.25 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000021.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 735.85 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.31 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050917874 s
Info: compute_slice took 1282.33 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.48 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021700802 s
Info: compute_slice took 1255.23 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.18 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1243.24 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.09 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.05 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000021.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.21, dt = 0.004202940046141644 ----------------
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.31 us    (1.8%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 385.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
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 = (1.583021689458044e-05,-5.101970806059155e-05,-3.6368339946271317e-06)
    sum a = (0.0003499238201064113,-0.00022268848109984477,-1.27623761637128e-05)
    sum e = 0.05011367250087739
    sum de = 0.0009068971619041166
Info: CFL hydro = 0.004093276672937868 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004093276672937868 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.6161e+05 | 100000 |      1 | 6.188e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.451817226645858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21420294004614163, dt = 0.004093276672937868 ----------------
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.43 us    (1.2%)
   patch tree reduce : 2.11 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 501.04 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7289159171584472e-05,-5.1910311040511783e-05,-3.688590419899754e-06)
    sum a = (0.00036198034741678244,-0.00021232331808998086,-1.2534921052971608e-05)
    sum e = 0.05011714817977163
    sum de = 0.0009164128455061177
Info: CFL hydro = 0.00399467431830831 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00399467431830831 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.6169e+05 | 100000 |      1 | 6.185e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.826912275196737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2182962167190795, dt = 0.0017037832809204956 ----------------
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.6%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 381.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.793057058653169e-05,-5.2250850220041434e-05,-3.7094816904679943e-06)
    sum a = (0.0003669107357964903,-0.0002078166428360592,-1.2439266136636953e-05)
    sum e = 0.05011465510411006
    sum de = 0.0009210325225283861
Info: CFL hydro = 0.003956650367431596 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.003956650367431596 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.6375e+05 | 100000 |      1 | 6.107e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.043929788012104 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 3554.6529128260004 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.vtk   [VTK Dump][rank=0]
              - took 8.02 ms, bandwidth = 665.79 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (54.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham [Shamrock Dump][rank=0]
              - took 11.49 ms, bandwidth = 1.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 711.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 709.61 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000022.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 746.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.32 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050670534 s
Info: compute_slice took 1289.10 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.70 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021924893 s
Info: compute_slice took 1259.66 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.12 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1247.11 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.29 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.22, dt = 0.003956650367431596 ----------------
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.46 us    (1.7%)
   patch tree reduce : 2.35 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 412.16 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.938650824078238e-05,-5.306926881730501e-05,-3.758618029774507e-06)
    sum a = (0.0003781410376366151,-0.00019691536991541886,-1.2214892683112492e-05)
    sum e = 0.050122061720953376
    sum de = 0.0009285878161788052
Info: CFL hydro = 0.003869330593510515 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.003869330593510515 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.6141e+05 | 100000 |      1 | 6.196e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.990585048307995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2239566503674316, dt = 0.003869330593510515 ----------------
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.75 us    (1.6%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 387.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.087187811532309e-05,-5.3809633219695434e-05,-3.8054376040760513e-06)
    sum a = (0.00038880272356142973,-0.0001856747395840879,-1.1992454784186853e-05)
    sum e = 0.05012547756402874
    sum de = 0.0009361293170785296
Info: CFL hydro = 0.004212355106469715 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004212355106469715 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.6141e+05 | 100000 |      1 | 6.195e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.483614408983936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22782598096094211, dt = 0.002174019039057895 ----------------
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.61 us    (1.6%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 386.19 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1737769432542086e-05,-5.419154678120225e-05,-3.831079086218186e-06)
    sum a = (0.0003946429433110646,-0.0001791116042023425,-1.1866169754417386e-05)
    sum e = 0.05012450632993426
    sum de = 0.0009407527240664408
Info: CFL hydro = 0.004167699570242847 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004167699570242847 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.6294e+05 | 100000 |      1 | 6.137e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.75213653420892 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 3573.657318557 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/rho_integ_hollywood_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 711.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.32 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000023.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 733.37 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_central_pot_100000/analysis/plots/v_z_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050519018000000006 s
Info: compute_slice took 1294.47 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1251.78 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022462447 s
Info: compute_slice took 1265.00 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1253.61 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1252.30 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1255.65 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.04 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000023.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.23, dt = 0.004167699570242847 ----------------
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.7%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 399.00 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3388871032251386e-05,-5.4930895946428685e-05,-3.88039644377456e-06)
    sum a = (0.0004055124831486652,-0.00016603659389934097,-1.1621428815481992e-05)
    sum e = 0.05013217139812874
    sum de = 0.0009469520694622098
Info: CFL hydro = 0.0046491936994195685 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0046491936994195685 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.6181e+05 | 100000 |      1 | 6.180e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.276770533736965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23416769957024286, dt = 0.0046491936994195685 ----------------
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.83 us    (2.0%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 377.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.529682760218678e-05,-5.567558587524814e-05,-3.933916714048749e-06)
    sum a = (0.0004170938405517553,-0.000150703899716556,-1.1344311889995559e-05)
    sum e = 0.050137855807685955
    sum de = 0.0009534738890650949
Info: CFL hydro = 0.0045770896170433065 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0045770896170433065 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.5865e+05 | 100000 |      1 | 6.303e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.552856907797793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23881689326966243, dt = 0.0011831067303375575 ----------------
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.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 : 1102.00 ns (0.3%)
   LB compute        : 356.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.581721611906689e-05,-5.581824234069962e-05,-3.946694060664857e-06)
    sum a = (0.000419944077298135,-0.00014667992829211704,-1.1273105687918693e-05)
    sum e = 0.050133014565621435
    sum de = 0.0009563823352991115
Info: CFL hydro = 0.004545040241142445 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004545040241142445 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.6417e+05 | 100000 |      1 | 6.091e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.992363036688927 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 59                                                      [SPH][rank=0]
Info: time since start : 3592.687227062 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.vtk   [VTK Dump][rank=0]
              - took 7.99 ms, bandwidth = 668.37 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (56.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham [Shamrock Dump][rank=0]
              - took 11.41 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 713.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000024.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 731.65 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_central_pot_100000/analysis/plots/v_z_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050989721 s
Info: compute_slice took 1290.91 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1256.22 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.022016556000000003 s
Info: compute_slice took 1261.48 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.86 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1247.76 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1248.97 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000024.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.24, dt = 0.004545040241142445 ----------------
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.78 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 392.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.772756491655084e-05,-5.648252812351576e-05,-3.997888657390645e-06)
    sum a = (0.00043050243824673906,-0.00013076564597156161,-1.0996932201629522e-05)
    sum e = 0.05014307535326661
    sum de = 0.0009606764404632028
Info: CFL hydro = 0.004413886852089201 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004413886852089201 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.6116e+05 | 100000 |      1 | 6.205e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.36870610828618 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24454504024114243, dt = 0.004413886852089201 ----------------
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 : 1873.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 399.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.965174805622264e-05,-5.7023547362190125e-05,-4.045800262044369e-06)
    sum a = (0.00044013128259301747,-0.00011464215717192973,-1.0724749356315788e-05)
    sum e = 0.050146992318080015
    sum de = 0.0009651755901250627
Info: CFL hydro = 0.004297504684344084 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004297504684344084 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.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.66854158114332 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24895892709323164, dt = 0.0010410729067683588 ----------------
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.18 us    (1.8%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 372.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.013120712467654e-05,-5.710731457837826e-05,-4.0563648158899654e-06)
    sum a = (0.0004423084137721176,-0.00011074673730177268,-1.0659980958012974e-05)
    sum e = 0.05014254039861535
    sum de = 0.0009672978704012962
Info: CFL hydro = 0.004387064790422965 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004387064790422965 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.6351e+05 | 100000 |      1 | 6.116e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.128262939228733 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 3611.70797875 (s)                                            [SPH][rank=0]
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_central_pot_100000/analysis/plots/rho_integ_normal_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.02 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 713.28 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 711.94 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000025.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 736.54 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 707.46 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050100851 s
Info: compute_slice took 1290.83 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.89 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021519642000000002 s
Info: compute_slice took 1266.10 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.83 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1242.88 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.72 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000025.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.25, dt = 0.004387064790422965 ----------------
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.48 us    (1.5%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 463.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.207277606939817e-05,-5.759113998221446e-05,-4.103097128705101e-06)
    sum a = (0.00045106710265476455,-9.39508842369182e-05,-1.0384618278463174e-05)
    sum e = 0.05015219089889975
    sum de = 0.0009694117394654383
Info: CFL hydro = 0.00424057918682954 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.00424057918682954 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.5940e+05 | 100000 |      1 | 6.273e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.175488482772547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25438706479042295, dt = 0.00424057918682954 ----------------
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.7%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 351.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.400477430457069e-05,-5.795270389869464e-05,-4.146529907881887e-06)
    sum a = (0.0004588697457770774,-7.715649869333892e-05,-1.0114719842065321e-05)
    sum e = 0.050155944338445446
    sum de = 0.0009717582293978408
Info: CFL hydro = 0.0043330570685518235 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0043330570685518235 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.6096e+05 | 100000 |      1 | 6.213e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.571723883013124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25862764397725246, dt = 0.001372356022747545 ----------------
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.78 us    (1.8%)
   patch tree reduce : 1934.00 ns (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        : 359.79 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.465105082686108e-05,-5.8022981123478855e-05,-4.159838641729583e-06)
    sum a = (0.00046124983067213785,-7.16091763034161e-05,-1.002658820513564e-05)
    sum e = 0.050152484012841905
    sum de = 0.0009733987852564431
Info: CFL hydro = 0.004289261863250753 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004289261863250753 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.6386e+05 | 100000 |      1 | 6.103e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.09548645354012 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 3630.698479096 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.vtk   [VTK Dump][rank=0]
              - took 8.01 ms, bandwidth = 667.06 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (55.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham [Shamrock Dump][rank=0]
              - took 11.35 ms, bandwidth = 1.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 717.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 717.94 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050813775000000005 s
Info: compute_slice took 1301.99 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1258.97 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021684301000000003 s
Info: compute_slice took 1271.75 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1256.46 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1258.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1254.06 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000026.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.26, dt = 0.004289261863250753 ----------------
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.40 us    (1.8%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 382.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.663110529691579e-05,-5.8326325181798525e-05,-4.2027848301450265e-06)
    sum a = (0.0004682105759046586,-5.392837022878556e-05,-9.748619118052048e-06)
    sum e = 0.050161592896587295
    sum de = 0.0009734013613327888
Info: CFL hydro = 0.004367638209032295 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004367638209032295 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.6053e+05 | 100000 |      1 | 6.229e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.788005942822963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.26428926186325075, dt = 0.004367638209032295 ----------------
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.5%)
   patch tree reduce : 28.18 us   (6.8%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.3%)
   LB compute        : 365.75 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8691007927641466e-05,-5.8523945988566786e-05,-4.244767130388137e-06)
    sum a = (0.0004745295633231901,-3.542130034904599e-05,-9.46164912219673e-06)
    sum e = 0.050166061503916747
    sum de = 0.000973446502810998
Info: CFL hydro = 0.004326464601271498 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004326464601271498 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.6098e+05 | 100000 |      1 | 6.212e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.310917024649033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.26865690007228304, dt = 0.001343099927716973 ----------------
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.00 us    (1.9%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 350.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.934214807528593e-05,-5.853110424172578e-05,-4.256848380080874e-06)
    sum a = (0.00047631212543045617,-2.9634548996368776e-05,-9.372607534223497e-06)
    sum e = 0.050162202652602496
    sum de = 0.0009744818507956279
Info: CFL hydro = 0.0042695126813535504 sink sink = inf                               [SPH][rank=0]
Info: cfl dt = 0.0042695126813535504 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.4178e+05 | 100000 |      1 | 7.053e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.855313004655913 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 3649.9103136860003 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 716.97 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 716.46 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000027.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 768.64 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 723.38 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050486593 s
Info: compute_slice took 1288.48 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.70 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021995389 s
Info: compute_slice took 1259.00 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.90 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1240.03 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.91 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_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_central_pot_100000/analysis/plots/particle_count_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000027.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.27, dt = 0.0042695126813535504 ----------------
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.4%)
   patch tree reduce : 2.18 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 465.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.13769658146105e-05,-5.8653743231814345e-05,-4.29680505093041e-06)
    sum a = (0.00048145742858222746,-1.095429586720748e-05,-9.087033486862066e-06)
    sum e = 0.0501712871008542
    sum de = 0.0009722471510297796
Info: CFL hydro = 0.004180340324514007 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004180340324514007 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.6173e+05 | 100000 |      1 | 6.183e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.858102093331336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2742695126813536, dt = 0.004180340324514007 ----------------
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.79 us    (1.8%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 361.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.340060568637603e-05,-5.8659658127733085e-05,-4.3341823124374054e-06)
    sum a = (0.00048570820371371154,7.724096638041291e-06,-8.803710940853883e-06)
    sum e = 0.05017513445482924
    sum de = 0.0009702219711411137
Info: CFL hydro = 0.004320129518952015 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004320129518952015 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.6139e+05 | 100000 |      1 | 6.196e-01 | 0.0% |   0.1% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.28810065227338 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2784498530058676, dt = 0.0015501469941324175 ----------------
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.35 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 394.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.416240964173351e-05,-5.860864362386514e-05,-4.347237166157615e-06)
    sum a = (0.0004870819538337676,1.4739799475483744e-05,-8.697718972393895e-06)
    sum e = 0.050172110227989494
    sum de = 0.0009702831337476695
Info: CFL hydro = 0.004276257076175728 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004276257076175728 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.6184e+05 | 100000 |      1 | 6.179e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.031515918736284 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 3668.945437457 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.vtk   [VTK Dump][rank=0]
              - took 8.15 ms, bandwidth = 654.93 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (53.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham [Shamrock Dump][rank=0]
              - took 11.79 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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 714.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 714.75 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 700.27 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.06 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050610625000000006 s
Info: compute_slice took 1280.05 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.14 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021644432 s
Info: compute_slice took 1277.28 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.22 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1238.00 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.94 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000028.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.28, dt = 0.004276257076175728 ----------------
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.79 us    (1.7%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 427.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.624636205081029e-05,-5.854017476672052e-05,-4.384348696894247e-06)
    sum a = (0.0004902856541440529,3.4326717757452224e-05,-8.402679682139203e-06)
    sum e = 0.050181037742164626
    sum de = 0.0009657469319146584
Info: CFL hydro = 0.004287605816626545 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004287605816626545 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.6090e+05 | 100000 |      1 | 6.215e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.769544542517597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28427625707617576, dt = 0.004287605816626545 ----------------
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.35 us    (1.6%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 369.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.835536359638276e-05,-5.835111598304279e-05,-4.419745243248292e-06)
    sum a = (0.0004926179813499006,5.427211394555963e-05,-8.10297515870018e-06)
    sum e = 0.05018521236059996
    sum de = 0.0009612261461412238
Info: CFL hydro = 0.004361087533887704 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004361087533887704 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.6093e+05 | 100000 |      1 | 6.214e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.839825085174418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28856386289280234, dt = 0.0014361371071976436 ----------------
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.15 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 388.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.906783060891904e-05,-5.823041478796518e-05,-4.430739719123416e-06)
    sum a = (0.0004931990484008177,6.101298844996256e-05,-8.001725956519864e-06)
    sum e = 0.050181666371399355
    sum de = 0.0009606519605794367
Info: CFL hydro = 0.004317892195660638 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004317892195660638 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.6410e+05 | 100000 |      1 | 6.094e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.484172131145646 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 3687.908888892 (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_central_pot_100000/analysis/plots/rho_integ_normal_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 711.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 710.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000029.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 757.43 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 712.13 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050762473 s
Info: compute_slice took 1272.68 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.15 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021945783 s
Info: compute_slice took 1247.60 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.46 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1228.88 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.74 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000029.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.29, dt = 0.004317892195660638 ----------------
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.00 us    (1.8%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 414.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.119782817689946e-05,-5.796212687129515e-05,-4.46521760531473e-06)
    sum a = (0.0004943253466268819,8.144226241345926e-05,-7.694662565529798e-06)
    sum e = 0.05019082018890339
    sum de = 0.00095361052423114
Info: CFL hydro = 0.004185840485295243 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004185840485295243 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.6110e+05 | 100000 |      1 | 6.207e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.042373725321205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2943178921956606, dt = 0.004185840485295243 ----------------
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.73 us    (1.8%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 361.44 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (68.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.326942684287145e-05,-5.757711685076491e-05,-4.496763302092432e-06)
    sum a = (0.0004945174680794793,0.00010144022703435989,-7.393227503128351e-06)
    sum e = 0.050194471782194675
    sum de = 0.0009469455689778924
Info: CFL hydro = 0.004121367042013568 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004121367042013568 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.6044e+05 | 100000 |      1 | 6.233e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.17684830544404 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.29850373268095587, dt = 0.00149626731904412 ----------------
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 : 1874.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 402.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.400975926393389e-05,-5.738348100926518e-05,-4.50719466724369e-06)
    sum a = (0.0004943690449865066,0.00010862558426077358,-7.284584317867069e-06)
    sum e = 0.05019125414852196
    sum de = 0.0009453884940235479
Info: CFL hydro = 0.004084222745591043 sink sink = inf                                [SPH][rank=0]
Info: cfl dt = 0.004084222745591043 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.6241e+05 | 100000 |      1 | 6.157e-01 | 0.0% |   0.0% 0.0% |     1.16 GB |     5.04 MB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.748389859429565 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 77                                                      [SPH][rank=0]
Info: time since start : 3706.8453428770003 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.vtk   [VTK Dump][rank=0]
              - took 8.73 ms, bandwidth = 611.95 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.sham  [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (54.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.05 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 729.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 709.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000030.json
Info: compute_slice field_name: vxyz, positions count: 2073600       [sph::CartesianRender][rank=0]
Info: compute_slice took 726.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 709.36 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.050474824 s
Info: compute_slice took 1280.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.80 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.021429884 s
Info: compute_slice took 1248.01 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.71 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_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 1236.77 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.58 ms                                  [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_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.03 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000030.json
Saving perf history to _to_trash/circular_disc_central_pot_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)

527 import matplotlib
528 import matplotlib.pyplot as plt
529
530 face_on_render_kwargs = {
531     "x_unit": "au",
532     "y_unit": "au",
533     "time_unit": "year",
534     "x_label": "x",
535     "y_label": "y",
536 }
537
538 column_density_plot.render_all(
539     **face_on_render_kwargs,
540     field_unit="kg.m^-2",
541     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
542     vmin=1,
543     vmax=1e4,
544     norm="log",
545 )
546
547 column_density_plot_hollywood.render_all(
548     **face_on_render_kwargs,
549     field_unit="kg.m^-2",
550     field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
551     vmin=1,
552     vmax=1e4,
553     norm="log",
554     holywood_mode=True,
555 )
556
557 vertical_density_plot.render_all(
558     **face_on_render_kwargs,
559     field_unit="kg.m^-3",
560     field_label="$\\rho$",
561     vmin=1e-10,
562     vmax=1e-6,
563     norm="log",
564 )
565
566 v_z_slice_plot.render_all(
567     **face_on_render_kwargs,
568     field_unit="m.s^-1",
569     field_label="$\\mathrm{v}_z$",
570     cmap="seismic",
571     cmap_bad_color="white",
572     vmin=-300,
573     vmax=300,
574 )
575
576 relative_azy_velocity_slice_plot.render_all(
577     **face_on_render_kwargs,
578     field_unit="m.s^-1",
579     field_label="$\\mathrm{v}_{\\theta} - v_k$",
580     cmap="seismic",
581     cmap_bad_color="white",
582     vmin=-300,
583     vmax=300,
584 )
585
586 vertical_shear_gradient_slice_plot.render_all(
587     **face_on_render_kwargs,
588     field_unit="yr^-1",
589     field_label="${{\\partial R \\Omega}}/{{\\partial z}}$",
590     cmap="seismic",
591     cmap_bad_color="white",
592     vmin=-1,
593     vmax=1,
594 )
595
596 dt_part_slice_plot.render_all(
597     **face_on_render_kwargs,
598     field_unit="year",
599     field_label="$\\Delta t$",
600     vmin=1e-4,
601     vmax=1,
602     norm="log",
603     contour_list=[1e-4, 1e-3, 1e-2, 1e-1, 1],
604 )
605
606 column_particle_count_plot.render_all(
607     **face_on_render_kwargs,
608     field_unit=None,
609     field_label="$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
610     vmin=1,
611     vmax=1e2,
612     norm="log",
613     contour_list=[1, 10, 100, 1000],
614 )
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_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

623 render_gif = True

Do it for rho integ

628 if render_gif:
629     ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
630     if ani is not None:
631         plt.show()

Same but in hollywood

636 if render_gif:
637     ani = column_density_plot_hollywood.render_gif(
638         gif_filename="rho_integ_hollywood.gif", save_animation=True
639     )
640     if ani is not None:
641         plt.show()

For the vertical density plot

645 if render_gif and shamrock.sys.world_rank() == 0:
646     ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
647     if ani is not None:
648         plt.show()

Make a gif from the plots

653 if render_gif and shamrock.sys.world_rank() == 0:
654     ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
655     if ani is not None:
656         plt.show()

Make a gif from the plots

661 if render_gif and shamrock.sys.world_rank() == 0:
662     ani = relative_azy_velocity_slice_plot.render_gif(
663         gif_filename="relative_azy_velocity_slice.gif", save_animation=True
664     )
665     if ani is not None:
666         plt.show()

Make a gif from the plots

670 if render_gif and shamrock.sys.world_rank() == 0:
671     ani = vertical_shear_gradient_slice_plot.render_gif(
672         gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
673     )
674     if ani is not None:
675         plt.show()

Make a gif from the plots

679 if render_gif and shamrock.sys.world_rank() == 0:
680     ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
681     if ani is not None:
682         plt.show()

Make a gif from the plots

686 if render_gif and shamrock.sys.world_rank() == 0:
687     ani = column_particle_count_plot.render_gif(
688         gif_filename="particle_count.gif", save_animation=True
689     )
690     if ani is not None:
691         plt.show()

helper function to load data from JSON files

696 def load_data_from_json(filename, key):
697     filepath = os.path.join(analysis_folder, filename)
698     with open(filepath, "r") as fp:
699         data = json.load(fp)[key]
700     t = [d["t"] for d in data]
701     values = [d[key] for d in data]
702     return t, values

load the json file for barycenter

707 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
708 barycenter_x = [d[0] for d in barycenter]
709 barycenter_y = [d[1] for d in barycenter]
710 barycenter_z = [d[2] for d in barycenter]
711
712 plt.figure(figsize=(8, 5), dpi=200)
713
714 plt.plot(t, barycenter_x)
715 plt.plot(t, barycenter_y)
716 plt.plot(t, barycenter_z)
717 plt.xlabel("t")
718 plt.ylabel("barycenter")
719 plt.legend(["x", "y", "z"])
720 plt.savefig(analysis_folder + "barycenter.png")
721 plt.show()
run circular disc central pot

load the json file for disc_mass

725 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
726
727 plt.figure(figsize=(8, 5), dpi=200)
728
729 plt.plot(t, disc_mass)
730 plt.xlabel("t")
731 plt.ylabel("disc_mass")
732 plt.savefig(analysis_folder + "disc_mass.png")
733 plt.show()
run circular disc central pot

load the json file for total_momentum

737 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
738 total_momentum_x = [d[0] for d in total_momentum]
739 total_momentum_y = [d[1] for d in total_momentum]
740 total_momentum_z = [d[2] for d in total_momentum]
741
742 plt.figure(figsize=(8, 5), dpi=200)
743
744 plt.plot(t, total_momentum_x)
745 plt.plot(t, total_momentum_y)
746 plt.plot(t, total_momentum_z)
747 plt.xlabel("t")
748 plt.ylabel("total_momentum")
749 plt.legend(["x", "y", "z"])
750 plt.savefig(analysis_folder + "total_momentum.png")
751 plt.show()
run circular disc central pot

load the json file for energies

755 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
756 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
757
758 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
759
760 plt.figure(figsize=(8, 5), dpi=200)
761 plt.plot(t, potential_energy)
762 plt.plot(t, kinetic_energy)
763 plt.plot(t, total_energy)
764 plt.xlabel("t")
765 plt.ylabel("energy")
766 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
767 plt.savefig(analysis_folder + "energies.png")
768 plt.show()
run circular disc central pot

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

772 perf_analysis.plot_perf_history(close_plots=False)
773 plt.show()
  • run circular disc central pot
  • run circular disc central pot
  • run circular disc central pot
  • run circular disc central pot
  • run circular disc central pot
  • run circular disc central pot
  • run circular disc central pot
  • run circular disc central pot
Plotting perf history from _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json

Total running time of the script: (15 minutes 44.100 seconds)

Estimated memory usage: 2191 MB

Gallery generated by Sphinx-Gallery