Production run: Circular disc & pseudo-newtonian Paczynski Wiita potential#

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

The simulation models:

  • A central star with a given mass and accretion radius

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

  • Artificial viscosity for angular momentum transport

  • Locally isothermal equation of state

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

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

  • The actual run script (runscript.py)

  • Plot generation (make_plots.py)

  • Animation from the plots (plot_to_gif.py)

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

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

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

python make_plots.py

Runscript (runscript.py)#

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

44 import glob
45 import json
46 import os  # for makedirs
47
48 import numpy as np
49
50 import shamrock
51
52 # If we use the shamrock executable to run this script instead of the python interpreter,
53 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
54 if not shamrock.sys.is_initialized():
55     shamrock.change_loglevel(1)
56     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )

Use shamrock documentation style for matplotlib

60 shamrock.matplotlib.set_shamrock_mpl_style()

Setup units

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

List parameters

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

Create the dump directory if it does not exist

150 if shamrock.sys.world_rank() == 0:
151     os.makedirs(sim_folder, exist_ok=True)
152     os.makedirs(dump_folder, exist_ok=True)
153     os.makedirs(analysis_folder, exist_ok=True)
154     os.makedirs(plot_folder, exist_ok=True)

Utility functions and quantities deduced from the base one

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

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

Dump handling

198 def get_vtk_dump_name(idump):
199     return dump_prefix + f"{idump:07}" + ".vtk"
200
201
202 def get_ph_dump_name(idump):
203     return dump_prefix + f"{idump:07}" + ".phdump"
204
205
206 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)

Load the last dump if it exists, setup otherwise

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

SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 rank min = 2.9e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.353543253 s
SPH setup: final particle count = 100000 beginning injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.96 us   (83.9%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (0.2%)
   patch tree reduce : 6.84 us    (0.8%)
   gen split merge   : 781.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.1%)
   LB compute        : 859.25 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.4%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected       100000 / 100000 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.011636438 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   1.5% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.38188798700000004 s
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
disc momentum = (-5.810951242480584e-05, 2.0681541048100417e-06, 0.0)
disc barycenter = (-0.015207723587746209, 0.015657581335006374, -0.00025450167927213325)
disc momentum after correction = (-1.757169849079046e-18, -5.857232830263487e-18, 0.0)
disc barycenter after correction = (-1.786900705527672e-15, 6.979551485375435e-16, -6.060520737604519e-17)
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 410.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}}  [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.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 = (-1.0466294497746275e-17,2.62545540863357e-18,0)
    sum a = (-5.410645997946861e-05,-0.0001158374591349622,-1.922898148685252e-05)
    sum e = 0.050002970624538845
    sum de = 1.0112079351360288e-05
Info: cfl dt = 7.833195429152329e-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    | 2.7740e+04 | 100000 |      1 | 3.605e+00 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

On the fly analysis

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

Evolve the simulation

497 model.solver_logs_reset_cumulated_step_time()
498 model.solver_logs_reset_step_count()
499
500 t_start = model.get_time()
501
502 idump = 0
503 iplot = 0
504 istop = 0
505 for ttarg in t_stop:
506     if ttarg >= t_start:
507         model.evolve_until(ttarg)
508
509         if istop % dump_freq_stop == 0:
510             model.do_vtk_dump(get_vtk_dump_name(idump), True)
511             dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
512
513             # dump = model.make_phantom_dump()
514             # dump.save_dump(get_ph_dump_name(idump))
515
516         if istop % plot_freq_stop == 0:
517             analysis(iplot)
518
519     if istop % dump_freq_stop == 0:
520         idump += 1
521
522     if istop % plot_freq_stop == 0:
523         iplot += 1
524
525     istop += 1
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 16.601371454000002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000000.vtk        [VTK Dump][rank=0]
              - took 33.71 ms, bandwidth = 166.11 MB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000000.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (19.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000000.sham  [Shamrock Dump][rank=0]
              - took 7.25 ms, bandwidth = 1.77 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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 511.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 508.74 ms                                   [sph::CartesianRender][rank=0]
/usr/local/lib/python3.10/dist-packages/shamrock/utils/analysis/StandardPlotHelper.py:59: RuntimeWarning: invalid value encountered in divide
  ret = field / normalization
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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 523.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.16 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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.050715495000000006 s
Info: compute_slice took 958.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 921.30 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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.016653921000000002 s
Info: compute_slice took 943.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 919.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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 915.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 917.30 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_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 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000000.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000000.json
Warning: step count is 0, skipping save of perf history
Info: evolve_until (target_time = 0.01s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 7.833195429152329e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.2%)
   patch tree reduce : 1.42 us    (0.2%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.2%)
   LB compute        : 561.78 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.238264751717224e-09,-9.073774562801162e-09,-1.5062436989006804e-09)
    sum a = (-5.4145491994743974e-05,-0.00011592916873203398,-1.9228942623418045e-05)
    sum e = 0.05000297317141574
    sum de = 1.0476988357431809e-05
Info: cfl dt = 0.0026632979149156014 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.5558e+05 | 100000 |      1 | 6.428e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4387234158034001 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.833195429152329e-05, dt = 0.0026632979149156014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.3%)
   patch tree reduce : 1.54 us    (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.2%)
   LB compute        : 443.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.484453694147959e-07,-3.1783127980859974e-07,-5.271864497175722e-08)
    sum a = (-5.540285828322097e-05,-0.00011910759255656864,-1.9226515107451168e-05)
    sum e = 0.05000502786350114
    sum de = 2.280846650230866e-05
Info: cfl dt = 0.0043051009706663685 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.6268e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.597225120602397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.002741629869207125, dt = 0.0043051009706663685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (1.6%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.3%)
   LB compute        : 442.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8863463890081747e-07,-8.348340369191035e-07,-1.3548750122426996e-07)
    sum a = (-5.714073413401271e-05,-0.0001244843489468492,-1.9218046740299295e-05)
    sum e = 0.050008413416945466
    sum de = 4.257502751815587e-05
Info: cfl dt = 0.005275348058045789 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.6329e+05 | 100000 |      1 | 6.124e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.30652262902198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.007046730839873493, dt = 0.0029532691601265072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.3%)
   patch tree reduce : 1.50 us    (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 454.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.611274723124132e-07,-1.2140435651699342e-06,-1.922253373924433e-07)
    sum a = (-5.811499724241015e-05,-0.00012833504425490495,-1.920898904757331e-05)
    sum e = 0.05000577628028758
    sum de = 5.6504758023016934e-05
Info: cfl dt = 0.005902529470343562 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.6360e+05 | 100000 |      1 | 6.112e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.393583685353025 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 33.803005237 (s)                                             [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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 514.67 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 514.12 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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 554.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 512.68 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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.045563276 s
Info: compute_slice took 964.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 941.10 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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.020043272 s
Info: compute_slice took 1.02 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 926.00 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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 929.01 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 925.35 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000001.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000001.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.02s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.01, dt = 0.005902529470343562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.6%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 431.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.055915867907152e-07,-1.9772310158098235e-06,-3.055935864389565e-07)
    sum a = (-5.9501999506374556e-05,-0.0001363922014534389,-1.9182969333702153e-05)
    sum e = 0.05001359546411732
    sum de = 8.32199123974469e-05
Info: cfl dt = 0.006896793706138877 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.5959e+05 | 100000 |      1 | 6.266e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.91041065719878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.01590252947034356, dt = 0.004097470529656439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.3%)
   LB compute        : 455.91 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1534926870889259e-06,-2.559872845625147e-06,-3.841184468911395e-07)
    sum a = (-6.001002870725302e-05,-0.00014224578070790557,-1.9158697260444625e-05)
    sum e = 0.05000885823874203
    sum de = 0.00010278048891027751
Info: cfl dt = 0.007165314814856283 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.6226e+05 | 100000 |      1 | 6.163e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.93507648551324 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 49.841166432 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000001.vtk        [VTK Dump][rank=0]
              - took 5.57 ms, bandwidth = 1.00 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000001.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (52.5%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000001.sham  [Shamrock Dump][rank=0]
              - took 6.52 ms, bandwidth = 1.96 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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 511.24 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 519.22 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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 523.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 511.94 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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.045965646000000006 s
Info: compute_slice took 967.61 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 929.22 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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.017041078 s
Info: compute_slice took 938.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 922.57 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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 924.58 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 927.71 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000002.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.02, dt = 0.007165314814856283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.7%)
   patch tree reduce : 1.95 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 413.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5845242521748267e-06,-3.5911010797310276e-06,-5.213468171523124e-07)
    sum a = (-5.9952794247457663e-05,-0.00015292006813166792,-1.9104039369354983e-05)
    sum e = 0.05001950772891366
    sum de = 0.00013479861362451453
Info: cfl dt = 0.007254296281307108 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.5984e+05 | 100000 |      1 | 6.256e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.23129038726695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.027165314814856283, dt = 0.0028346851851437163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.5%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 392.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7542664983776688e-06,-4.062823646285678e-06,-5.753049340306408e-07)
    sum a = (-5.958929503108608e-05,-0.00015727926452679172,-1.9078130246628352e-05)
    sum e = 0.05000763583486771
    sum de = 0.0001492986864916567
Info: cfl dt = 0.007371059349581125 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.6217e+05 | 100000 |      1 | 6.166e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.549159503858537 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 65.80101089600001 (s)                                        [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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 509.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 508.99 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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 527.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 510.75 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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.04473714 s
Info: compute_slice took 958.35 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 922.30 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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.016526988 s
Info: compute_slice took 930.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 922.95 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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 918.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 913.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_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.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000003.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.04s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.03, dt = 0.007371059349581125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 405.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.192987525718488e-06,-5.228316914295385e-06,-7.158942422544018e-07)
    sum a = (-5.769657625965044e-05,-0.00016889605538099604,-1.89994169539078e-05)
    sum e = 0.050021982605914464
    sum de = 0.00018201645058448654
Info: cfl dt = 0.0074876299138245455 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.5451e+05 | 100000 |      1 | 6.472e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.99990683254563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.037371059349581126, dt = 0.0026289406504188748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (1.8%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 372.22 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3376927292472763e-06,-5.715148647395587e-06,-7.655524816426638e-07)
    sum a = (-5.6686044524761684e-05,-0.00017312282265626372,-1.8967390178683474e-05)
    sum e = 0.05000904084502619
    sum de = 0.00019581024921787172
Info: cfl dt = 0.007424416899272085 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.6156e+05 | 100000 |      1 | 6.190e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.290613498547208 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 81.753871069 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000002.vtk        [VTK Dump][rank=0]
              - took 5.44 ms, bandwidth = 1.03 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000002.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (56.1%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000002.sham  [Shamrock Dump][rank=0]
              - took 4.61 ms, bandwidth = 2.78 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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 515.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 514.48 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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 522.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 510.95 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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.047917357 s
Info: compute_slice took 956.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 942.28 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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.018023091 s
Info: compute_slice took 937.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 940.66 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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 931.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 928.92 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000004.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.04, dt = 0.007424416899272085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 346.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (62.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7572252421862705e-06,-7.006040617731534e-06,-9.063321955747268e-07)
    sum a = (-5.284490737529332e-05,-0.0001852118241122305,-1.886576273006707e-05)
    sum e = 0.05002428474648818
    sum de = 0.00022870465614517697
Info: cfl dt = 0.007027005762649452 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.6088e+05 | 100000 |      1 | 6.216e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.999152664156824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.047424416899272084, dt = 0.0025755831007279184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 44.47 us   (11.0%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 344.40 us  (85.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.879072590804862e-06,-7.52794595532556e-06,-9.545452729711587e-07)
    sum a = (-5.116971276990241e-05,-0.0001894432919976299,-1.8826666302447067e-05)
    sum e = 0.05001115123494328
    sum de = 0.0002423982776691361
Info: cfl dt = 0.00693312484557587 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.5096e+05 | 100000 |      1 | 6.624e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.996769577444123 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 97.78409058700001 (s)                                        [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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 541.41 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.91 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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 525.37 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.53 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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.044328883 s
Info: compute_slice took 942.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 924.20 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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.01780104 s
Info: compute_slice took 939.08 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 919.15 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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 916.78 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 918.39 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000005.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.06s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.05, dt = 0.00693312484557587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (1.9%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 371.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2316812962877064e-06,-8.846829198485553e-06,-1.0850225528228828e-06)
    sum a = (-4.5760948882417703e-05,-0.00020085433413731665,-1.8711642398428968e-05)
    sum e = 0.050024687220082624
    sum de = 0.0002733559834578381
Info: cfl dt = 0.0066123021680824685 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.6017e+05 | 100000 |      1 | 6.244e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.97620345584608 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.056933124845575875, dt = 0.003066875154424123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.6%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 388.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.353274595814138e-06,-9.502381455392201e-06,-1.1420100864497033e-06)
    sum a = (-4.2949547485239386e-05,-0.00020589273111600362,-1.865624076482071e-05)
    sum e = 0.05001459339028025
    sum de = 0.0002891203457269238
Info: cfl dt = 0.006505741194573244 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.6080e+05 | 100000 |      1 | 6.219e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.753014428456687 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 113.71633950500001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000003.vtk        [VTK Dump][rank=0]
              - took 6.47 ms, bandwidth = 865.05 MB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000003.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (56.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000003.sham  [Shamrock Dump][rank=0]
              - took 6.76 ms, bandwidth = 1.89 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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 516.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.76 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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 534.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 519.80 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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.044858442000000005 s
Info: compute_slice took 984.21 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 947.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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.019364254 s
Info: compute_slice took 958.01 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 961.39 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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 945.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 938.29 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000006.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000006.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.07s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.06, dt = 0.006505741194573244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (1.7%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 397.48 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6283821276361733e-06,-1.0849592345146773e-05,-1.263297805582456e-06)
    sum a = (-3.61232780176883e-05,-0.00021649141099977355,-1.8529601157472694e-05)
    sum e = 0.050025906692341755
    sum de = 0.0003183620394297825
Info: cfl dt = 0.0062593398735925196 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.6067e+05 | 100000 |      1 | 6.224e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.630621830520845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06650574119457324, dt = 0.003494258805426767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.7%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 383.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (63.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.732401238685299e-06,-1.1640545498480114e-05,-1.327633085332811e-06)
    sum a = (-3.1974542599783866e-05,-0.00022210996757540487,-1.845651431856354e-05)
    sum e = 0.050018514133376636
    sum de = 0.00033587242960097185
Info: cfl dt = 0.006150597787409405 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.6098e+05 | 100000 |      1 | 6.212e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.249649035519084 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 129.838357738 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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 514.19 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 512.96 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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 523.96 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 512.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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.044466581000000005 s
Info: compute_slice took 991.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 944.76 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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.022080025 s
Info: compute_slice took 969.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 950.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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 948.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 952.19 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000007.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000007.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.07, dt = 0.006150597787409405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.4%)
   patch tree reduce : 1.59 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 481.89 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.921815412017204e-06,-1.3016470919012707e-05,-1.441023989298653e-06)
    sum a = (-2.3849902987952235e-05,-0.00023180875534737358,-1.8319341851796794e-05)
    sum e = 0.05002793722696041
    sum de = 0.0003636236029008848
Info: cfl dt = 0.006137699188298858 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.6003e+05 | 100000 |      1 | 6.249e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.43419792071733 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07615059778740942, dt = 0.003849402212590586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 384.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.988637586141657e-06,-1.3938622726040492e-05,-1.5111206580208643e-06)
    sum a = (-1.8236201647978866e-05,-0.00023772627205082225,-1.822802500297574e-05)
    sum e = 0.05002284903772892
    sum de = 0.00038251234107245197
Info: cfl dt = 0.006056949434484241 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.6105e+05 | 100000 |      1 | 6.209e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.31867270238953 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 145.968026971 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000004.vtk        [VTK Dump][rank=0]
              - took 6.01 ms, bandwidth = 931.17 MB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000004.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (56.6%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000004.sham  [Shamrock Dump][rank=0]
              - took 6.43 ms, bandwidth = 1.99 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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 510.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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 519.73 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.28 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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.043302886000000006 s
Info: compute_slice took 975.69 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 944.67 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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.016378887 s
Info: compute_slice took 952.87 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 941.51 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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 939.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 938.17 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000008.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000008.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.09s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.08, dt = 0.006056949434484241 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.6%)
   patch tree reduce : 1.59 us    (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 441.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.088288640222254e-06,-1.5389908186062227e-05,-1.6213511261144534e-06)
    sum a = (-8.583534042854407e-06,-0.00024673457405861556,-1.807591829915561e-05)
    sum e = 0.0500314619298499
    sum de = 0.0004097513463992792
Info: cfl dt = 0.005846816919258772 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.4741e+05 | 100000 |      1 | 6.784e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.14265755551337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08605694943448425, dt = 0.003943050565515749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 331.78 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.092901089181645e-06,-1.6390076502711112e-05,-1.6921647346793145e-06)
    sum a = (-1.76937662404586e-06,-0.0002523695403717137,-1.7971442688837073e-05)
    sum e = 0.05002711863831093
    sum de = 0.0004289193111481645
Info: cfl dt = 0.005704360469161277 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.6177e+05 | 100000 |      1 | 6.182e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.962753216754084 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 162.054261903 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.24 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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 511.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 510.72 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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 519.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.54 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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.043593872000000006 s
Info: compute_slice took 963.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 942.31 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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.016834065000000002 s
Info: compute_slice took 924.05 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 923.80 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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 944.35 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 940.69 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000009.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000009.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.09, dt = 0.005704360469161277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.8%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 372.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (63.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0895599676179155e-06,-1.7840792810973608e-05,-1.7944743456201348e-06)
    sum a = (8.817817118059324e-06,-0.00026014385983242434,-1.7812787264741904e-05)
    sum e = 0.050034472403868484
    sum de = 0.0004545203151401976
Info: cfl dt = 0.005508626215687463 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.5972e+05 | 100000 |      1 | 6.261e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.79901078187139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09570436046916127, dt = 0.004295639530838738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.8%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 369.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (64.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.021485219110374e-06,-1.8980450819268294e-05,-1.8705391448842675e-06)
    sum a = (1.7346853054052625e-05,-0.0002656696748918386,-1.7687538918599446e-05)
    sum e = 0.050032471137897834
    sum de = 0.00047487232016580494
Info: cfl dt = 0.006151260585296719 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.5740e+05 | 100000 |      1 | 6.353e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.341234363936362 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 178.06355754100002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000005.vtk        [VTK Dump][rank=0]
              - took 5.78 ms, bandwidth = 969.72 MB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000005.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (54.6%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000005.sham  [Shamrock Dump][rank=0]
              - took 6.32 ms, bandwidth = 2.03 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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 508.78 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.23 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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 516.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.29 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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.042939177 s
Info: compute_slice took 963.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 917.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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.016610731 s
Info: compute_slice took 941.73 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 931.26 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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 925.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 924.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000010.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.006151260585296719 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.9%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 350.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (67.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8964613736662425e-06,-2.0626522673960572e-05,-1.979070795011721e-06)
    sum a = (3.0371148785818763e-05,-0.0002730237290207025,-1.7499677837246774e-05)
    sum e = 0.05004099926054441
    sum de = 0.0005019276563273293
Info: cfl dt = 0.005907960767784398 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.5164e+05 | 100000 |      1 | 6.595e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.57995083975865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10615126058529673, dt = 0.0038487394147032755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.2%)
   LB compute        : 435.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7395128177724303e-06,-2.1699938212637023e-05,-2.045844703615928e-06)
    sum a = (3.898986001388956e-05,-0.0002772611611741012,-1.7377127383663774e-05)
    sum e = 0.05003642080459371
    sum de = 0.0005204174073993
Info: cfl dt = 0.005770151531751503 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.5662e+05 | 100000 |      1 | 6.385e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.700946414043855 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 194.052149229 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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 510.78 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.54 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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 524.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 511.21 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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.043998379000000004 s
Info: compute_slice took 978.34 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 936.53 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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.016508292 s
Info: compute_slice took 944.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 930.83 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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 933.19 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 932.89 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000011.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000011.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.12s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.11, dt = 0.005770151531751503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.7%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 388.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.497949830495213e-06,-2.3307931512561885e-05,-2.145877529425713e-06)
    sum a = (5.2564536794355046e-05,-0.0002830329380727663,-1.7186279617686343e-05)
    sum e = 0.05004476894203528
    sum de = 0.0005454601512658868
Info: cfl dt = 0.00557101177554242 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.5363e+05 | 100000 |      1 | 6.509e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.913385049376437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1157701515317515, dt = 0.00422984846824849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 342.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (66.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.236445834039084e-06,-2.4521769965776312e-05,-2.2180222776768793e-06)
    sum a = (6.299238909037827e-05,-0.00028679100832778665,-1.7041046565136934e-05)
    sum e = 0.050042735714375806
    sum de = 0.0005650457936468312
Info: cfl dt = 0.005437711731864121 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.6083e+05 | 100000 |      1 | 6.218e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.48977909391648 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 210.08799653300002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000006.vtk        [VTK Dump][rank=0]
              - took 6.02 ms, bandwidth = 929.62 MB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000006.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (57.0%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000006.sham  [Shamrock Dump][rank=0]
              - took 7.16 ms, bandwidth = 1.79 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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 513.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 513.09 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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 527.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 511.54 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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.043810124000000006 s
Info: compute_slice took 968.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 936.41 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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.019382643 s
Info: compute_slice took 954.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 934.87 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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 932.18 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 965.88 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000012.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.13s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.12, dt = 0.005437711731864121 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.7%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 386.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.871857263329178e-06,-2.6089204830221517e-05,-2.310379419604942e-06)
    sum a = (7.696180739395761e-05,-0.00029098578451825245,-1.684782089954007e-05)
    sum e = 0.050049212643217954
    sum de = 0.0005884463636713892
Info: cfl dt = 0.0052737908217717925 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.5780e+05 | 100000 |      1 | 6.337e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.890268695598593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1254377117318641, dt = 0.0045622882681359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.7%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 393.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4827544774610833e-06,-2.7428170852976863e-05,-2.3867186825042092e-06)
    sum a = (8.914447979004664e-05,-0.0002939200869447744,-1.6680143249934826e-05)
    sum e = 0.05004945385664076
    sum de = 0.0006087775741002839
Info: cfl dt = 0.005146949445504585 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.5667e+05 | 100000 |      1 | 6.383e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.732655736527224 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 226.19679113200002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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 506.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 500.11 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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 522.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.72 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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.046681743000000005 s
Info: compute_slice took 966.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 917.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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.017472502 s
Info: compute_slice took 928.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 919.21 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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 919.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 925.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000013.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000013.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.13, dt = 0.005146949445504585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.6%)
   patch tree reduce : 1.82 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 414.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.996141914961717e-06,-2.8947656248275084e-05,-2.472188039668596e-06)
    sum a = (0.00010336193478443442,-0.00029654811108422883,-1.6484990375543304e-05)
    sum e = 0.050054275982375496
    sum de = 0.0006306447179659819
Info: cfl dt = 0.005011058225451963 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.4504e+05 | 100000 |      1 | 6.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.87475765032623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1351469494455046, dt = 0.0048530505544954194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 336.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4579329590006792e-06,-3.0393582376878498e-05,-2.5516883103621466e-06)
    sum a = (0.00011719362813624273,-0.0002983290243387241,-1.6295271055867908e-05)
    sum e = 0.050056557052962615
    sum de = 0.0006513833221817631
Info: cfl dt = 0.0050924295689672725 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.6074e+05 | 100000 |      1 | 6.221e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.08311284201231 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 242.13905439700002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000007.vtk        [VTK Dump][rank=0]
              - took 5.48 ms, bandwidth = 1.02 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000007.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (55.9%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000007.sham  [Shamrock Dump][rank=0]
              - took 6.08 ms, bandwidth = 2.11 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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 510.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.37 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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 519.99 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 511.26 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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.044135541 s
Info: compute_slice took 966.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 942.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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.016754528 s
Info: compute_slice took 952.88 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 933.66 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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 940.90 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 937.11 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000014.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.15s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.14, dt = 0.0050924295689672725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (1.7%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.3%)
   LB compute        : 428.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.275697082309889e-07,-3.191712335274679e-05,-2.6342104717966155e-06)
    sum a = (0.00013211361340435468,-0.00029943293506814507,-1.6090340385571285e-05)
    sum e = 0.05006062138517094
    sum de = 0.0006725014099604285
Info: cfl dt = 0.004924277084773183 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.6084e+05 | 100000 |      1 | 6.217e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.486220864936893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14509242956896728, dt = 0.0049075704310327095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (1.8%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 367.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 10.16 us   (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.41223358477e-07,-3.3389422364766664e-05,-2.7126531529955972e-06)
    sum a = (0.00014684589886040938,-0.000299722994409261,-1.5887280285741186e-05)
    sum e = 0.05006345329494334
    sum de = 0.0006927134768761095
Info: cfl dt = 0.004776007474311293 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.5998e+05 | 100000 |      1 | 6.251e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.263657543731586 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 258.169120763 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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 509.88 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 511.19 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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 523.47 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 509.39 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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.044334651 s
Info: compute_slice took 974.61 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 930.14 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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.017898178 s
Info: compute_slice took 948.64 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 933.93 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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 931.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 933.35 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000015.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000015.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.15, dt = 0.004776007474311293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.4%)
   patch tree reduce : 1.50 us    (0.3%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.2%)
   LB compute        : 462.37 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.962636162900878e-07,-3.4821613369624986e-05,-2.7880326565159452e-06)
    sum a = (0.0001614776703741695,-0.0002992466797830948,-1.5684507968499804e-05)
    sum e = 0.05006645329922152
    sum de = 0.0007119993566140337
Info: cfl dt = 0.005135257470022032 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.5950e+05 | 100000 |      1 | 6.270e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.423047105318783 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15477600747431128, dt = 0.005135257470022032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.5%)
   patch tree reduce : 1.51 us    (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 428.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4604337543760046e-06,-3.6357184676253305e-05,-2.868092422173436e-06)
    sum a = (0.00017748857611460674,-0.00029786876307109266,-1.5460903206060708e-05)
    sum e = 0.05007119715089268
    sum de = 0.000731974387632489
Info: cfl dt = 0.005016332839632155 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.6066e+05 | 100000 |      1 | 6.224e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.70060034871942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1599112649443333, dt = 8.873505566669992e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.6%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 384.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (62.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5172932747102507e-06,-3.6380078098977623e-05,-2.8688902122667635e-06)
    sum a = (0.000177767476362445,-0.0002978369649998125,-1.545698943922646e-05)
    sum e = 0.05006367847960322
    sum de = 0.0007335340497803751
Info: cfl dt = 0.005016949566378912 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.6521e+05 | 100000 |      1 | 6.053e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5277425662257266 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 274.77901233200004 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000008.vtk        [VTK Dump][rank=0]
              - took 5.43 ms, bandwidth = 1.03 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000008.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (58.8%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000008.sham  [Shamrock Dump][rank=0]
              - took 6.59 ms, bandwidth = 1.94 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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 505.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 506.00 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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 517.68 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 505.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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.043996673 s
Info: compute_slice took 993.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 909.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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.018865327 s
Info: compute_slice took 929.24 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 917.10 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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 914.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 910.76 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_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.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000016.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000016.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.17s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.16, dt = 0.005016949566378912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.409156112281792e-06,-3.787430972059834e-05,-2.946436975087258e-06)
    sum a = (0.000193643494777072,-0.00029558108849663596,-1.523295130806512e-05)
    sum e = 0.0500746528475141
    sum de = 0.0007516014767365682
Info: cfl dt = 0.00490731334962006 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.5916e+05 | 100000 |      1 | 6.283e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.74577390358601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1650169495663789, dt = 0.00490731334962006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 339.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3992500111083828e-06,-3.931915993273314e-05,-3.020627846392945e-06)
    sum a = (0.00020934336376906998,-0.0002924947139371485,-1.5008642828912089e-05)
    sum e = 0.050078086451859606
    sum de = 0.0007699624445667185
Info: cfl dt = 0.004810065655825025 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.5973e+05 | 100000 |      1 | 6.260e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.218857990626038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16992426291599896, dt = 7.57370840010485e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 340.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4536271553899835e-06,-3.9333739725911484e-05,-3.0212141812385233e-06)
    sum a = (0.00020958673103986712,-0.00029244019921916285,-1.5005141514687746e-05)
    sum e = 0.05007120004259716
    sum de = 0.0007713899090377185
Info: cfl dt = 0.00481133512535845 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.6615e+05 | 100000 |      1 | 6.019e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.45300781571376775 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 291.316000502 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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 506.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 508.40 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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 511.04 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 507.30 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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.043744494 s
Info: compute_slice took 953.96 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 913.88 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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.017614725 s
Info: compute_slice took 926.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 913.78 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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 913.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 918.00 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000017.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000017.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.18s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.17, dt = 0.00481133512535845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 337.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.46202837221685e-06,-4.074076546408364e-05,-3.0934088130794487e-06)
    sum a = (0.00022509732836885213,-0.0002885350699824109,-1.4780252361863412e-05)
    sum e = 0.05008163656398459
    sum de = 0.0007877250273869168
Info: cfl dt = 0.00471991192800987 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.5836e+05 | 100000 |      1 | 6.315e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.42948403384267 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17481133512535846, dt = 0.00471991192800987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.5%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 431.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.561781278209017e-06,-4.2093231139828284e-05,-3.1626292939610663e-06)
    sum a = (0.0002403778253338704,-0.0002838540451668358,-1.4554986919214277e-05)
    sum e = 0.05008515489881436
    sum de = 0.0008043455045675192
Info: cfl dt = 0.005173904659966314 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.6035e+05 | 100000 |      1 | 6.236e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.246925718421778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17953124705336831, dt = 0.00046875294663167866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 331.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.710520392099269e-06,-4.2215241547482084e-05,-3.1689203704427702e-06)
    sum a = (0.0002418971051404525,-0.0002833429383988226,-1.4532366562766492e-05)
    sum e = 0.05007915232017485
    sum de = 0.0008070812305274329
Info: cfl dt = 0.005142751469861215 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.5194e+05 | 100000 |      1 | 6.581e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.564072085959195 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 42                                                      [SPH][rank=0]
Info: time since start : 307.876037347 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000009.vtk        [VTK Dump][rank=0]
              - took 5.48 ms, bandwidth = 1.02 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000009.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (56.5%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000009.sham  [Shamrock Dump][rank=0]
              - took 6.24 ms, bandwidth = 2.05 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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 505.63 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 497.72 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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 522.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 502.74 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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.045714634000000004 s
Info: compute_slice took 957.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 905.89 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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.01880315 s
Info: compute_slice took 896.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 891.96 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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 890.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 905.34 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000018.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000018.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.18, dt = 0.005142751469861215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.0%)
   patch tree reduce : 1.68 us    (0.2%)
   gen split merge   : 931.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.2%)
   LB compute        : 670.41 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.954893168552726e-06,-4.3672284068990733e-05,-3.243651418264619e-06)
    sum a = (0.00025856290921527804,-0.00027717303689649863,-1.4281238898498509e-05)
    sum e = 0.050090944287044
    sum de = 0.0008230303818769844
Info: cfl dt = 0.005043199667293786 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.4799e+05 | 100000 |      1 | 6.757e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.399601637146525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1851427514698612, dt = 0.004857248530138802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 319.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.253651523486857e-06,-4.50027172600372e-05,-3.31237320133065e-06)
    sum a = (0.00027426042179278133,-0.0002703977477914324,-1.4039132385085998e-05)
    sum e = 0.05009416873976914
    sum de = 0.0008388981142346254
Info: cfl dt = 0.004847683331502784 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.4703e+05 | 100000 |      1 | 6.801e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.71035019634793 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 323.779277893 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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 497.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 493.83 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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 515.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 494.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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.043845111000000006 s
Info: compute_slice took 921.90 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 894.62 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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.018441969000000002 s
Info: compute_slice took 889.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 894.71 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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 883.16 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 886.96 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000019.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000019.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.19, dt = 0.004847683331502784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.8%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 366.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.621302558649736e-06,-4.629706528336453e-05,-3.3798424836293826e-06)
    sum a = (0.00028983035217496306,-0.00026270767854944324,-1.3792768756606871e-05)
    sum e = 0.05009825964126884
    sum de = 0.0008538940272063411
Info: cfl dt = 0.004669157003621148 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.5980e+05 | 100000 |      1 | 6.258e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.88706228173861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1948476833315028, dt = 0.004669157003621148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 393.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.101230502335321e-05,-4.750504917033339e-05,-3.4436459400409893e-06)
    sum a = (0.0003046842209611535,-0.00025441854395476856,-1.355103046929664e-05)
    sum e = 0.050101799181536906
    sum de = 0.0008677819423824902
Info: cfl dt = 0.004511431594842577 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.5359e+05 | 100000 |      1 | 6.511e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.81614565707499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19951684033512393, dt = 0.00048315966487608164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.5%)
   patch tree reduce : 1.89 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 408.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1194193672198672e-05,-4.7608622313340856e-05,-3.4496288943726487e-06)
    sum a = (0.00030621131352666836,-0.0002535115546865843,-1.352576841211604e-05)
    sum e = 0.05009594061810637
    sum de = 0.0008703585301408226
Info: cfl dt = 0.004496297150798031 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.6378e+05 | 100000 |      1 | 6.106e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8487379394659897 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 47                                                      [SPH][rank=0]
Info: time since start : 340.07708605600004 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000010.vtk        [VTK Dump][rank=0]
              - took 5.52 ms, bandwidth = 1.01 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000010.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (57.1%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000010.sham  [Shamrock Dump][rank=0]
              - took 4.61 ms, bandwidth = 2.78 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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 490.04 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 493.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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 505.92 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 487.77 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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.042869857000000004 s
Info: compute_slice took 902.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 886.55 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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.016487294 s
Info: compute_slice took 892.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 868.87 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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 882.64 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 878.21 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_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.29 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000020.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.21s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.2, dt = 0.004496297150798031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 370.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2571379643504107e-05,-4.874826648405244e-05,-3.510438665542855e-06)
    sum a = (0.00032031396329124676,-0.0002446217137717776,-1.328843735249999e-05)
    sum e = 0.05010570820342486
    sum de = 0.0008818633341435783
Info: cfl dt = 0.004357287979492795 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.5790e+05 | 100000 |      1 | 6.333e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.558456956696986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20449629715079803, dt = 0.004357287979492795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 333.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3998784677400334e-05,-4.97941680538063e-05,-3.567806658401572e-06)
    sum a = (0.0003337643128760876,-0.00023523823450388154,-1.3054605633567215e-05)
    sum e = 0.05010922910200288
    sum de = 0.0008934823517586654
Info: cfl dt = 0.004233189833233716 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.5798e+05 | 100000 |      1 | 6.330e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.780622018813506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20885358513029084, dt = 0.0011464148697091503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 351.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4410720571942681e-05,-5.0043405403071e-05,-3.582263216349006e-06)
    sum a = (0.0003372626067305864,-0.00023264464448040275,-1.2992459196171004e-05)
    sum e = 0.05010509503257256
    sum de = 0.0008974525144596813
Info: cfl dt = 0.004202939598285493 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.6267e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.713719011454302 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 50                                                      [SPH][rank=0]
Info: time since start : 356.39389517300003 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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 490.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 489.45 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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 503.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 490.64 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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.042675296 s
Info: compute_slice took 925.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 867.90 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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.019103328000000003 s
Info: compute_slice took 905.88 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 872.24 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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 879.34 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 869.96 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000021.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000021.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.21, dt = 0.004202939598285493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.8%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 371.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (65.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5830220184844752e-05,-5.1019710126595555e-05,-3.6368341147837477e-06)
    sum a = (0.0003499238712790023,-0.00022268847675266796,-1.2762376766540605e-05)
    sum e = 0.05011367286406161
    sum de = 0.0009069003299885715
Info: cfl dt = 0.004093276241915785 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.5771e+05 | 100000 |      1 | 6.341e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.861770696710643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21420293959828549, dt = 0.004093276241915785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 377.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.728916251869453e-05,-5.1910312992050656e-05,-3.6885905371154222e-06)
    sum a = (0.00036198039908219294,-0.0002123233123338301,-1.2534921674550952e-05)
    sum e = 0.05011714855567014
    sum de = 0.0009164160540535326
Info: cfl dt = 0.003994673901275404 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.5781e+05 | 100000 |      1 | 6.337e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.255000381507934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21829621584020126, dt = 0.0017037841597987435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 339.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.793057433821142e-05,-5.225085234772519e-05,-3.709481819846763e-06)
    sum a = (0.0003669107907103133,-0.00020781663364582786,-1.2439266706445581e-05)
    sum e = 0.050114655487803035
    sum de = 0.0009210357507090755
Info: cfl dt = 0.003956649931454304 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.6205e+05 | 100000 |      1 | 6.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.939483630163117 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 372.595903292 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000011.vtk        [VTK Dump][rank=0]
              - took 5.45 ms, bandwidth = 1.03 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000011.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (56.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000011.sham  [Shamrock Dump][rank=0]
              - took 4.61 ms, bandwidth = 2.78 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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 493.69 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 492.70 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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 509.99 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 490.42 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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.04622662 s
Info: compute_slice took 927.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 890.04 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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.017753319 s
Info: compute_slice took 903.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 876.40 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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 881.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 886.08 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000022.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.23s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.22, dt = 0.003956649931454304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 413.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (68.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9386512054708934e-05,-5.3069270813098864e-05,-3.7586181558984214e-06)
    sum a = (0.0003781410928764655,-0.00019691535919444237,-1.2214893271386964e-05)
    sum e = 0.05012206211559431
    sum de = 0.0009285910809960473
Info: cfl dt = 0.0038693301712265493 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.5164e+05 | 100000 |      1 | 6.595e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.5989475761157 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.2239566499314543, dt = 0.0038693301712265493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.087188198150463e-05,-5.380963509020783e-05,-3.805437727403508e-06)
    sum a = (0.000388802779115213,-0.00018567472731637841,-1.199245539031899e-05)
    sum e = 0.05012547797102185
    sum de = 0.0009361326174758876
Info: cfl dt = 0.00421235468577689 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.6137e+05 | 100000 |      1 | 6.197e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.478664787546876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22782598010268085, dt = 0.0021740198973191627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 403.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1737773751555725e-05,-5.4191548783803966e-05,-3.831079221237545e-06)
    sum a = (0.00039464300194755363,-0.00017911158769535432,-1.18661703067052e-05)
    sum e = 0.050124506746671495
    sum de = 0.0009407560464177243
Info: cfl dt = 0.004167699130116286 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.6232e+05 | 100000 |      1 | 6.161e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.704139255124202 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 388.896601831 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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 504.24 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 497.16 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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 508.99 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 498.60 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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.043357606 s
Info: compute_slice took 938.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 897.59 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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.017746879 s
Info: compute_slice took 912.97 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 903.65 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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 909.12 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 893.09 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_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.24 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000023.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000023.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.23, dt = 0.004167699130116286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.7%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 418.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3388875427788603e-05,-5.493089779394886e-05,-3.880396575760365e-06)
    sum a = (0.00040551254201053917,-0.00016603657543772614,-1.1621429385187783e-05)
    sum e = 0.050132171826614114
    sum de = 0.0009469554274254093
Info: cfl dt = 0.004649192815640365 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.4436e+05 | 100000 |      1 | 6.927e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.65898577162506 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23416769913011629, dt = 0.004649192815640365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 367.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.529683191109788e-05,-5.5675587489023654e-05,-3.933916838502585e-06)
    sum a = (0.0004170938986634242,-0.0001507038803401377,-1.134431250259972e-05)
    sum e = 0.05013785624984893
    sum de = 0.0009534772854924319
Info: cfl dt = 0.004577088951085487 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.6044e+05 | 100000 |      1 | 6.233e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.853615817918335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23881689194575664, dt = 0.001183108054243348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.8%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 365.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.581722104205428e-05,-5.581824413570448e-05,-3.946694201084453e-06)
    sum a = (0.00041994413893142187,-0.00014667990339204448,-1.127310621812355e-05)
    sum e = 0.05013301501574349
    sum de = 0.000956385744551098
Info: cfl dt = 0.004545039537157028 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.6049e+05 | 100000 |      1 | 6.231e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.835471431015488 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 59                                                      [SPH][rank=0]
Info: time since start : 405.37329290400004 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000012.vtk        [VTK Dump][rank=0]
              - took 5.41 ms, bandwidth = 1.04 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000012.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (57.3%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000012.sham  [Shamrock Dump][rank=0]
              - took 6.48 ms, bandwidth = 1.98 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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.24 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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 495.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 490.95 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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 509.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 489.15 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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.043614374000000004 s
Info: compute_slice took 913.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 884.24 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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.018449696 s
Info: compute_slice took 898.62 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 883.17 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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 878.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 878.61 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000024.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000024.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.25s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.24, dt = 0.004545039537157028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 390.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7727569828005986e-05,-5.648252969615603e-05,-3.99788879218807e-06)
    sum a = (0.00043050249935540103,-0.00013076561943011167,-1.0996932763181062e-05)
    sum e = 0.05014307581614918
    sum de = 0.0009606798842747282
Info: cfl dt = 0.004413886177720778 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.5970e+05 | 100000 |      1 | 6.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.130351755975983 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.244545039537157, dt = 0.004413886177720778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.8%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 351.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9651752942169104e-05,-5.702354873138321e-05,-4.045800392072871e-06)
    sum a = (0.00044013134320356053,-0.00011464212900631155,-1.0724749947822258e-05)
    sum e = 0.05014699279569551
    sum de = 0.0009651790673141908
Info: cfl dt = 0.004297504034439942 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.6084e+05 | 100000 |      1 | 6.218e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.556756764633683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2489589257148778, dt = 0.0010410742851222066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 370.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.013121267604082e-05,-5.7107316078123914e-05,-4.056364961474659e-06)
    sum a = (0.00044230847745139345,-0.0001107467029742042,-1.0659981460775731e-05)
    sum e = 0.05014254088314047
    sum de = 0.0009673013578133963
Info: cfl dt = 0.004387064036648683 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.6342e+05 | 100000 |      1 | 6.119e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.124843756932068 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 421.640002396 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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 496.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 487.63 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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 508.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 488.78 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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.043240164000000005 s
Info: compute_slice took 918.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 888.03 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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.016213667 s
Info: compute_slice took 896.04 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 874.71 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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 884.72 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 884.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000025.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000025.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.26s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.25, dt = 0.004387064036648683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 332.96 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.207278156980593e-05,-5.759114124197566e-05,-4.103097268369394e-06)
    sum a = (0.00045106716542604643,-9.39508484046425e-05,-1.0384618814886185e-05)
    sum e = 0.05015219139592629
    sum de = 0.0009694152567000445
Info: cfl dt = 0.004240578481234827 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.5979e+05 | 100000 |      1 | 6.258e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.23608096371708 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2543870640366487, dt = 0.004240578481234827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 380.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.400477974761649e-05,-5.795270494324219e-05,-4.1465300426712215e-06)
    sum a = (0.0004588698077107904,-7.715646133695794e-05,-1.0114720409584067e-05)
    sum e = 0.05015594484991822
    sum de = 0.000971761775277194
Info: cfl dt = 0.00433305632902492 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.5692e+05 | 100000 |      1 | 6.373e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.95563690545702 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2586276425178835, dt = 0.001372357482116504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.5%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 371.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4651057020029185e-05,-5.802298223204419e-05,-4.1598387922200105e-06)
    sum a = (0.0004612498952153819,-7.160913160108245e-05,-1.0026588674080035e-05)
    sum e = 0.05015248453296682
    sum de = 0.0009734023416991432
Info: cfl dt = 0.0042892610844593275 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.6016e+05 | 100000 |      1 | 6.244e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.91255961180807 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 437.888399341 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000013.vtk        [VTK Dump][rank=0]
              - took 5.49 ms, bandwidth = 1.02 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000013.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (58.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000013.sham  [Shamrock Dump][rank=0]
              - took 6.46 ms, bandwidth = 1.98 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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 489.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 492.79 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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 509.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 490.82 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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.042411719 s
Info: compute_slice took 910.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 877.73 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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.015864579 s
Info: compute_slice took 884.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 871.84 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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 871.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 872.42 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000026.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000026.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.27s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.26, dt = 0.0042892610844593275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.0%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 328.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.663111141124603e-05,-5.832632603378495e-05,-4.202784974706303e-06)
    sum a = (0.00046821063920186406,-5.392832407344997e-05,-9.748619621077871e-06)
    sum e = 0.05016159342873722
    sum de = 0.0009734049435044949
Info: cfl dt = 0.004367637563607381 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.6014e+05 | 100000 |      1 | 6.245e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.72790194719138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2642892610844593, dt = 0.004367637563607381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 348.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.869101401084625e-05,-5.852394660791839e-05,-4.244767271035787e-06)
    sum a = (0.00047452962555153495,-3.5421252116418696e-05,-9.461649650086406e-06)
    sum e = 0.050166062051495854
    sum de = 0.0009734501105055515
Info: cfl dt = 0.004326463688055531 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.6129e+05 | 100000 |      1 | 6.200e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.360596638618823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2686568986480667, dt = 0.001343101351933329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 328.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.934215491353081e-05,-5.85311048481803e-05,-4.256848535059857e-06)
    sum a = (0.00047631218942614095,-2.96344931070691e-05,-9.37260796187272e-06)
    sum e = 0.05016220320854824
    sum de = 0.0009744854670007181
Info: cfl dt = 0.004269511726780351 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.6267e+05 | 100000 |      1 | 6.147e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.865557609172384 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 454.07287734100004 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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.21 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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 492.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 492.01 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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 506.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 490.30 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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.04393637 s
Info: compute_slice took 926.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 916.15 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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.023832244000000002 s
Info: compute_slice took 902.01 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 888.56 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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 887.47 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 887.57 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000027.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000027.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.28s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.27, dt = 0.004269511726780351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 349.13 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1376972473868575e-05,-5.865374356209337e-05,-4.296805198657694e-06)
    sum a = (0.0004814574907991793,-1.095423922097247e-05,-9.087033958619895e-06)
    sum e = 0.050171287668465576
    sum de = 0.0009722507892512612
Info: cfl dt = 0.004180339719213906 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.6078e+05 | 100000 |      1 | 6.219e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.712991174048266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2742695117267804, dt = 0.004180339719213906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 373.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3400612308040626e-05,-5.8659658221877924e-05,-4.334182456866879e-06)
    sum a = (0.00048570826454699526,7.724155440767135e-06,-8.803711433418914e-06)
    sum e = 0.05017513503801583
    sum de = 0.0009702256300229192
Info: cfl dt = 0.004320128733240243 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.5984e+05 | 100000 |      1 | 6.256e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.054833346447325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.27844985144599427, dt = 0.0015501485540057591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 334.92 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.416241711116356e-05,-5.8608643615958386e-05,-4.3472373252125395e-06)
    sum a = (0.00048708201565292,1.4739867177953988e-05,-8.69771935023908e-06)
    sum e = 0.05017211082069254
    sum de = 0.0009702867996937772
Info: cfl dt = 0.004276256253041452 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.6200e+05 | 100000 |      1 | 6.173e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.04028117210083 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 470.36827114000005 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000014.vtk        [VTK Dump][rank=0]
              - took 6.22 ms, bandwidth = 900.97 MB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000014.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (52.9%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000014.sham  [Shamrock Dump][rank=0]
              - took 5.48 ms, bandwidth = 2.34 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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 494.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 493.16 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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 512.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 496.17 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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.042963126000000004 s
Info: compute_slice took 947.46 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 900.12 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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.017672791 s
Info: compute_slice took 907.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 896.06 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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 898.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 907.71 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000028.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000028.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.29s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.28, dt = 0.004276256253041452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 429.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.624636938549009e-05,-5.8540174469056144e-05,-4.38434885023396e-06)
    sum a = (0.0004902857139525961,3.4326786844912004e-05,-8.40268009301972e-06)
    sum e = 0.050181038346927026
    sum de = 0.000965750615938387
Info: cfl dt = 0.004287605253049622 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.5945e+05 | 100000 |      1 | 6.272e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.546117622172403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2842762562530415, dt = 0.004287605253049622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 341.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.835537090557565e-05,-5.835111541361502e-05,-4.419745393806208e-06)
    sum a = (0.0004926180392516312,5.427218558905739e-05,-8.102975583965317e-06)
    sum e = 0.0501852129813387
    sum de = 0.0009612298471027097
Info: cfl dt = 0.004361086624441958 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.5961e+05 | 100000 |      1 | 6.265e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.636250007218138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2885638615060911, dt = 0.0014361384939088895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 395.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9067838679640475e-05,-5.8230414040521394e-05,-4.4307398816438585e-06)
    sum a = (0.0004931991062194843,6.1013068354663184e-05,-8.001726275094852e-06)
    sum e = 0.05018166700070514
    sum de = 0.0009606556661238039
Info: cfl dt = 0.004317891258018527 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.5172e+05 | 100000 |      1 | 6.591e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.844150417719524 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 486.790540763 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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 496.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 496.35 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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 511.61 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 492.81 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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.043873809 s
Info: compute_slice took 934.18 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 892.78 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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.01802755 s
Info: compute_slice took 912.90 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 892.68 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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 892.58 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 891.19 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_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.23 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000029.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000029.json
Saving perf history to _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.29, dt = 0.004317891258018527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.7%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 403.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1197836035158804e-05,-5.7962125825444226e-05,-4.465217761561175e-06)
    sum a = (0.0004943254019701898,8.144234317689318e-05,-7.6946629224255e-06)
    sum e = 0.05019082083047847
    sum de = 0.0009536142440276882
Info: cfl dt = 0.0041858396255208775 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.5721e+05 | 100000 |      1 | 6.361e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.43737105110358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2943178912580185, dt = 0.0041858396255208775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 421.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 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 = (5.326943450191577e-05,-5.757711554460089e-05,-4.49676345344381e-06)
    sum a = (0.0004945175210515074,0.00010144030878672062,-7.3932278932621856e-06)
    sum e = 0.05019447243878474
    sum de = 0.0009469493019495168
Info: cfl dt = 0.004121366131268031 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.6040e+05 | 100000 |      1 | 6.235e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.170355133464636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2985037308835394, dt = 0.0014962691164606134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 100000.0 min = 100000.0 factor = 1
 - strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 339.79 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.400976788605784e-05,-5.7383479404952364e-05,-4.50719483266667e-06)
    sum a = (0.0004943690968231988,0.00010862567646945913,-7.2845845665942044e-06)
    sum e = 0.05019125481547762
    sum de = 0.0009453922283563299
Info: cfl dt = 0.004084221795401464 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.6364e+05 | 100000 |      1 | 6.111e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.814825296548369 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 77                                                      [SPH][rank=0]
Info: time since start : 503.12622108600004 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000015.vtk        [VTK Dump][rank=0]
              - took 5.39 ms, bandwidth = 1.04 GB/s
Info: Dumping state to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000015.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (53.5%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000015.sham  [Shamrock Dump][rank=0]
              - took 6.13 ms, bandwidth = 2.09 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_normal_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_integ_hollywood_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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 500.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 497.42 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/rho_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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 512.97 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 495.15 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/v_z_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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.042593039 s
Info: compute_slice took 948.78 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 910.71 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/relative_azy_velocity_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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.017871461 s
Info: compute_slice took 915.06 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 903.98 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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 915.16 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 900.19 ms                                   [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/dt_part_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_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.22 s                               [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000030.npy
Saving metadata to _to_trash/circular_disc_pn_pot_100000/analysis/plots/particle_count_0000030.json
Saving perf history to _to_trash/circular_disc_pn_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)

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

629 render_gif = True

Do it for rho integ

634 if render_gif:
635     ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
636     if ani is not None:
637         plt.show()

Same but in hollywood

642 if render_gif:
643     ani = column_density_plot_hollywood.render_gif(
644         gif_filename="rho_integ_hollywood.gif", save_animation=True
645     )
646     if ani is not None:
647         plt.show()

For the vertical density plot

651 if render_gif and shamrock.sys.world_rank() == 0:
652     ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
653     if ani is not None:
654         plt.show()

Make a gif from the plots

659 if render_gif and shamrock.sys.world_rank() == 0:
660     ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
661     if ani is not None:
662         plt.show()

Make a gif from the plots

667 if render_gif and shamrock.sys.world_rank() == 0:
668     ani = relative_azy_velocity_slice_plot.render_gif(
669         gif_filename="relative_azy_velocity_slice.gif", save_animation=True
670     )
671     if ani is not None:
672         plt.show()

Make a gif from the plots

676 if render_gif and shamrock.sys.world_rank() == 0:
677     ani = vertical_shear_gradient_slice_plot.render_gif(
678         gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
679     )
680     if ani is not None:
681         plt.show()

Make a gif from the plots

685 if render_gif and shamrock.sys.world_rank() == 0:
686     ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
687     if ani is not None:
688         plt.show()

Make a gif from the plots

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

helper function to load data from JSON files

702 def load_data_from_json(filename, key):
703     filepath = os.path.join(analysis_folder, filename)
704     with open(filepath, "r") as fp:
705         data = json.load(fp)[key]
706     t = [d["t"] for d in data]
707     values = [d[key] for d in data]
708     return t, values

load the json file for barycenter

713 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
714 barycenter_x = [d[0] for d in barycenter]
715 barycenter_y = [d[1] for d in barycenter]
716 barycenter_z = [d[2] for d in barycenter]
717
718 plt.figure(figsize=(8, 5), dpi=200)
719
720 plt.plot(t, barycenter_x)
721 plt.plot(t, barycenter_y)
722 plt.plot(t, barycenter_z)
723 plt.xlabel("t")
724 plt.ylabel("barycenter")
725 plt.legend(["x", "y", "z"])
726 plt.savefig(analysis_folder + "barycenter.png")
727 plt.show()
run pn disc

load the json file for disc_mass

731 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
732
733 plt.figure(figsize=(8, 5), dpi=200)
734
735 plt.plot(t, disc_mass)
736 plt.xlabel("t")
737 plt.ylabel("disc_mass")
738 plt.savefig(analysis_folder + "disc_mass.png")
739 plt.show()
run pn disc

load the json file for total_momentum

743 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
744 total_momentum_x = [d[0] for d in total_momentum]
745 total_momentum_y = [d[1] for d in total_momentum]
746 total_momentum_z = [d[2] for d in total_momentum]
747
748 plt.figure(figsize=(8, 5), dpi=200)
749
750 plt.plot(t, total_momentum_x)
751 plt.plot(t, total_momentum_y)
752 plt.plot(t, total_momentum_z)
753 plt.xlabel("t")
754 plt.ylabel("total_momentum")
755 plt.legend(["x", "y", "z"])
756 plt.savefig(analysis_folder + "total_momentum.png")
757 plt.show()
run pn disc

load the json file for energies

761 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
762 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
763
764 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
765
766 plt.figure(figsize=(8, 5), dpi=200)
767 plt.plot(t, potential_energy)
768 plt.plot(t, kinetic_energy)
769 plt.plot(t, total_energy)
770 plt.xlabel("t")
771 plt.ylabel("energy")
772 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
773 plt.savefig(analysis_folder + "energies.png")
774 plt.show()
run pn disc

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

778 perf_analysis.plot_perf_history(close_plots=False)
779 plt.show()
  • run pn disc
  • run pn disc
  • run pn disc
  • run pn disc
  • run pn disc
  • run pn disc
  • run pn disc
  • run pn disc
Plotting perf history from _to_trash/circular_disc_pn_pot_100000/analysis/perf_history.json

Total running time of the script: (14 minutes 52.898 seconds)

Estimated memory usage: 2311 MB

Gallery generated by Sphinx-Gallery