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"
            },
            "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"
        },
        "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
        },
        "use_two_stage_search": true
    }
]
------------------------------------
Warning: make_generator_disc_mc: with the current EOS, cs_profile is ignored     [SPHSetup][rank=0]
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}

SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 rank min = 3.5e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.293254607 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     : 19.42 us   (82.4%)
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.47 us    (0.2%)
   patch tree reduce : 1.44 us    (0.2%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 813.00 ns  (0.1%)
   LB compute        : 662.91 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (0.7%)
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.013764783000000001 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.32839232100000004 s
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     : 6.44 us    (2.0%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 307.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.37741680646819326 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.49064184840865127 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.6378344029312467 unconverged cnt = 99997
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.8291847238106208 unconverged cnt = 99992
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 99984
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 99961
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 99871
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 99438
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 92881
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 46416
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757873 unconverged cnt = 1511
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9422982425757874 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-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.7076e+04 | 100000 |      1 | 3.693e+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 : 13.829969242 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000000.vtk        [VTK Dump][rank=0]
              - took 24.91 ms, bandwidth = 224.79 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     : 14.38 us   (70.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000000.sham  [Shamrock Dump][rank=0]
              - took 14.37 ms, bandwidth = 891.11 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 441.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 441.81 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 475.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 438.19 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.055968335 s
Info: compute_slice took 810.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 764.52 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.022859940000000002 s
Info: compute_slice took 775.94 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 754.59 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 756.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 769.71 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 1.88 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     : 9.29 us    (1.9%)
   patch tree reduce : 2.48 us    (0.5%)
   gen split merge   : 1.14 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.3%)
   LB compute        : 470.78 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 5.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.43 us   (91.7%)
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.5777e+05 | 100000 |      1 | 6.338e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4449151749228907 (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     : 6.69 us    (1.9%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 914.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 333.41 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (70.3%)
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.7133e+05 | 100000 |      1 | 5.837e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.427090567430014 (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.50 us    (2.4%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 973.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 283.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (73.7%)
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.7075e+05 | 100000 |      1 | 5.857e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.462973958921836 (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     : 7.54 us    (2.1%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 333.07 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (70.2%)
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.7080e+05 | 100000 |      1 | 5.855e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.159438715310785 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 28.731209275 (s)                                             [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.88 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 430.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 431.95 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 474.62 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 445.17 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.045865351000000006 s
Info: compute_slice took 786.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 747.94 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.025840433000000003 s
Info: compute_slice took 758.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 750.32 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 748.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 738.52 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 1.87 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.98 us    (2.8%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 261.04 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (72.9%)
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.6547e+05 | 100000 |      1 | 6.043e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.16105323985806 (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     : 7.10 us    (2.0%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 897.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 331.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (71.6%)
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.7042e+05 | 100000 |      1 | 5.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.138311395728213 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 42.240956114 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000001.vtk        [VTK Dump][rank=0]
              - took 5.40 ms, bandwidth = 1.04 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.59 us    (55.0%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000001.sham  [Shamrock Dump][rank=0]
              - took 6.87 ms, bandwidth = 1.86 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.87 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 1.88 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 430.04 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 429.69 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 503.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 429.96 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.050757659000000004 s
Info: compute_slice took 802.91 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 741.66 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.021653676 s
Info: compute_slice took 755.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 739.03 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 744.09 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 739.55 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 1.87 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.49 us    (2.6%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 268.49 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.0%)
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.6756e+05 | 100000 |      1 | 5.968e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.2234422723208 (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     : 7.35 us    (2.6%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 264.11 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (69.2%)
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.7026e+05 | 100000 |      1 | 5.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.37489730695802 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 55.727909110000006 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.87 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 1.88 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 427.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 424.49 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 470.09 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 425.81 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.044425975 s
Info: compute_slice took 788.09 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 733.46 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.02238615 s
Info: compute_slice took 763.87 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 730.39 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 734.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.35 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 1.86 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     : 7.83 us    (2.2%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 333.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.6%)
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.6261e+05 | 100000 |      1 | 6.150e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.150379030091614 (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.05 us    (2.2%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 963.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 301.46 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.8%)
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.6702e+05 | 100000 |      1 | 5.987e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.806653780624863 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 69.144580614 (s)                                             [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000002.vtk        [VTK Dump][rank=0]
              - took 6.09 ms, bandwidth = 919.83 MB/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     : 6.83 us    (55.6%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000002.sham  [Shamrock Dump][rank=0]
              - took 6.27 ms, bandwidth = 2.04 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.86 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 1.87 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 418.01 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 425.47 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 464.43 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 431.54 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.042005608 s
Info: compute_slice took 794.44 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 734.04 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.020890722 s
Info: compute_slice took 749.49 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 728.83 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 736.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 739.38 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 1.87 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     : 7.88 us    (2.6%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 11.62 us   (3.8%)
   LB compute        : 272.41 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (73.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.6887e+05 | 100000 |      1 | 5.922e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.13464623153782 (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     : 6.56 us    (2.4%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 795.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 254.06 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.8%)
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.7039e+05 | 100000 |      1 | 5.869e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.799174267885572 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 82.498528619 (s)                                             [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.86 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 1.87 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 421.72 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 422.46 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 463.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 424.56 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.047326483 s
Info: compute_slice took 780.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 740.65 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.023931366000000003 s
Info: compute_slice took 756.25 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 742.47 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 736.46 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 742.35 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 1.86 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.47 us    (2.5%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 281.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (70.3%)
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.5985e+05 | 100000 |      1 | 6.256e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.8983041636172 (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     : 7.01 us    (2.7%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 977.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.6%)
   LB compute        : 237.11 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.4%)
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.6896e+05 | 100000 |      1 | 5.919e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.65451976595752 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 95.89090389200001 (s)                                        [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000003.vtk        [VTK Dump][rank=0]
              - took 5.14 ms, bandwidth = 1.09 GB/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.72 us    (56.5%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000003.sham  [Shamrock Dump][rank=0]
              - took 6.77 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 1.86 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 1.85 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 429.95 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 425.63 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 467.18 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 431.17 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.044372863000000005 s
Info: compute_slice took 771.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 731.54 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.027343702 s
Info: compute_slice took 759.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 744.88 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 732.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 731.66 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 1.87 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.83 us    (2.3%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 315.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (74.1%)
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.6876e+05 | 100000 |      1 | 5.926e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.52440813328909 (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     : 6.63 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 290.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.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.6871e+05 | 100000 |      1 | 5.927e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.222613292389646 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 109.240174048 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.93 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 1.87 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 424.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 422.63 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 462.10 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 418.35 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.048948847000000004 s
Info: compute_slice took 782.57 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.79 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.021497057 s
Info: compute_slice took 751.79 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.54 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 733.23 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 731.39 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 1.85 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     : 8.36 us    (2.5%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 880.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 315.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (71.7%)
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.5478e+05 | 100000 |      1 | 6.461e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.271716687761185 (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     : 7.45 us    (2.0%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 934.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 350.07 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (72.1%)
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.6941e+05 | 100000 |      1 | 5.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.47716189605623 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 122.67955172100001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000004.vtk        [VTK Dump][rank=0]
              - took 5.58 ms, bandwidth = 1.00 GB/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.40 us    (56.2%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000004.sham  [Shamrock Dump][rank=0]
              - took 7.64 ms, bandwidth = 1.68 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.85 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 1.83 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 421.62 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 423.73 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 462.43 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 423.70 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.04468027 s
Info: compute_slice took 781.62 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 740.32 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.021598493 s
Info: compute_slice took 763.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 735.15 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 740.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 741.27 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 1.87 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.44 us    (2.4%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 974.00 ns  (0.3%)
   LB compute        : 284.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (71.3%)
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.6662e+05 | 100000 |      1 | 6.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.33091262321454 (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     : 7.37 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 939.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 280.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
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.6591e+05 | 100000 |      1 | 6.027e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.550870289056288 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 136.304799867 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.88 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 1.90 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 430.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.49 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 477.36 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 427.79 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.047638096000000005 s
Info: compute_slice took 810.00 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 752.36 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.022615831000000003 s
Info: compute_slice took 774.94 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 741.98 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 739.19 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 740.84 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 1.89 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     : 8.12 us    (2.6%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 294.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.3%)
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.6598e+05 | 100000 |      1 | 6.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.084933200839096 (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     : 7.72 us    (2.5%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 287.30 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (71.4%)
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.5020e+05 | 100000 |      1 | 6.658e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.227553837146555 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 150.005424524 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000005.vtk        [VTK Dump][rank=0]
              - took 6.06 ms, bandwidth = 924.17 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.75 us    (52.1%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000005.sham  [Shamrock Dump][rank=0]
              - took 8.27 ms, bandwidth = 1.55 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.96 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 1.87 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 425.32 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 425.40 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 475.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 425.46 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.043918135000000004 s
Info: compute_slice took 776.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.03 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.019960053000000002 s
Info: compute_slice took 762.11 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.60 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 735.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 737.93 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 1.88 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.89 us    (2.3%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 965.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 316.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (77.0%)
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.6702e+05 | 100000 |      1 | 5.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.98565768004475 (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     : 7.72 us    (2.9%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 245.25 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (69.2%)
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.6579e+05 | 100000 |      1 | 6.032e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.97058134433388 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 163.540796182 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.88 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 1.88 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 427.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.40 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 469.72 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 428.64 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.045453480000000004 s
Info: compute_slice took 777.23 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 737.09 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.026455754 s
Info: compute_slice took 760.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 741.53 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 742.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 741.97 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 1.88 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.15 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 280.98 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (71.4%)
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.6144e+05 | 100000 |      1 | 6.194e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.536078532784096 (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     : 7.54 us    (2.8%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 243.58 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (71.3%)
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.6738e+05 | 100000 |      1 | 5.974e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.487602919582237 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 177.016213698 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000006.vtk        [VTK Dump][rank=0]
              - took 5.70 ms, bandwidth = 982.63 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.69 us    (53.8%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000006.sham  [Shamrock Dump][rank=0]
              - took 7.63 ms, bandwidth = 1.68 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.88 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 1.88 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 425.08 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 428.40 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 465.35 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 432.07 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.043552966000000005 s
Info: compute_slice took 774.13 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.77 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.022719155 s
Info: compute_slice took 756.58 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 746.00 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 745.86 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 738.50 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 1.88 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     : 8.23 us    (2.5%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 936.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 300.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (73.0%)
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.6566e+05 | 100000 |      1 | 6.037e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.42833760101663 (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.42 us    (2.4%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 282.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (72.0%)
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.6525e+05 | 100000 |      1 | 6.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.141374966627968 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 190.48728629800001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.87 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 429.55 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 425.02 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 467.87 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 428.53 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.045015273 s
Info: compute_slice took 777.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 743.98 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.024061986 s
Info: compute_slice took 764.64 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 743.17 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 749.08 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 744.39 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 1.93 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     : 8.64 us    (2.9%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 276.41 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (71.0%)
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.5259e+05 | 100000 |      1 | 6.554e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.273199204103282 (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.90 us    (2.2%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 293.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (71.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.6764e+05 | 100000 |      1 | 5.965e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.288236751871732 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 204.671207102 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000007.vtk        [VTK Dump][rank=0]
              - took 5.31 ms, bandwidth = 1.05 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     : 6.80 us    (56.1%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000007.sham  [Shamrock Dump][rank=0]
              - took 6.40 ms, bandwidth = 2.00 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.88 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 1.90 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 434.05 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 430.22 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 471.82 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 440.01 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.047917337000000004 s
Info: compute_slice took 799.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 754.06 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.023786456 s
Info: compute_slice took 758.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 755.08 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 747.98 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 754.17 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 1.88 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.71 us    (2.9%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 943.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 245.87 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (69.0%)
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.6481e+05 | 100000 |      1 | 6.068e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.21344720082941 (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     : 7.73 us    (2.9%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 244.02 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (72.4%)
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.6580e+05 | 100000 |      1 | 6.031e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.29217471573594 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 218.26057872200002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 426.24 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 427.60 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 470.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 441.65 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.04515244 s
Info: compute_slice took 780.07 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 743.33 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.022396136 s
Info: compute_slice took 751.38 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 738.03 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 742.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.59 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 1.88 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     : 7.64 us    (2.7%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 261.75 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.3%)
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.6521e+05 | 100000 |      1 | 6.053e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.406288988693507 (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.54 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 864.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 302.93 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.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.6383e+05 | 100000 |      1 | 6.104e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.287555669973447 (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     : 7.51 us    (2.5%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 280.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.2%)
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.6994e+05 | 100000 |      1 | 5.884e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5428757257595019 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 232.331630654 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000008.vtk        [VTK Dump][rank=0]
              - took 5.32 ms, bandwidth = 1.05 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.69 us    (55.9%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000008.sham  [Shamrock Dump][rank=0]
              - took 7.56 ms, bandwidth = 1.69 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 431.31 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.83 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 474.83 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 434.73 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.044436313000000005 s
Info: compute_slice took 774.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 733.17 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.02210732 s
Info: compute_slice took 759.57 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 735.02 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 738.75 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 750.71 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 1.88 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     : 7.82 us    (2.6%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 277.01 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (73.4%)
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.6485e+05 | 100000 |      1 | 6.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.773174042762992 (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     : 7.22 us    (2.3%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 927.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 286.65 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (68.2%)
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.6639e+05 | 100000 |      1 | 6.010e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.39449220677684 (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     : 8.00 us    (2.3%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 998.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (72.1%)
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.7147e+05 | 100000 |      1 | 5.832e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.46751844684883137 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 246.413360796 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 426.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 424.62 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 467.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.98 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.047543601000000005 s
Info: compute_slice took 780.29 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 734.09 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.023005559000000002 s
Info: compute_slice took 750.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 733.27 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 735.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 734.94 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.00 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     : 7.58 us    (2.7%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 976.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.6%)
   LB compute        : 256.06 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (74.3%)
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.6735e+05 | 100000 |      1 | 5.976e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.98635231823804 (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     : 8.52 us    (2.7%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 286.19 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.9%)
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.6544e+05 | 100000 |      1 | 6.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.111676706938347 (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     : 7.08 us    (2.4%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 265.80 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (71.6%)
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.6808e+05 | 100000 |      1 | 5.949e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.836433208206727 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 42                                                      [SPH][rank=0]
Info: time since start : 260.553836252 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000009.vtk        [VTK Dump][rank=0]
              - took 5.27 ms, bandwidth = 1.06 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     : 6.15 us    (54.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000009.sham  [Shamrock Dump][rank=0]
              - took 7.41 ms, bandwidth = 1.73 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 423.73 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 429.81 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 474.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.26 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.047522246000000004 s
Info: compute_slice took 785.44 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 740.56 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.022085481 s
Info: compute_slice took 764.26 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 751.59 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 752.41 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 746.67 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 1.88 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.82 us    (2.4%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 300.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.7%)
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.5420e+05 | 100000 |      1 | 6.485e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.54787860776143 (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     : 7.82 us    (2.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 271.33 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (67.1%)
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.6534e+05 | 100000 |      1 | 6.048e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.911084656492626 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 274.14332987200004 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.88 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 426.67 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.91 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 468.72 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 424.77 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.047378582 s
Info: compute_slice took 776.71 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 740.13 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.022476085 s
Info: compute_slice took 752.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 737.58 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 731.34 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 730.00 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 1.89 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     : 7.99 us    (3.0%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 245.85 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.2%)
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.6642e+05 | 100000 |      1 | 6.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.0435332058795 (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.65 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.54 us    (0.4%)
   LB compute        : 334.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (72.8%)
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.6680e+05 | 100000 |      1 | 5.995e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.03732075695093 (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     : 7.30 us    (2.8%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 241.33 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.3%)
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.7034e+05 | 100000 |      1 | 5.870e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.962936817284266 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 47                                                      [SPH][rank=0]
Info: time since start : 288.156478642 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000010.vtk        [VTK Dump][rank=0]
              - took 5.32 ms, bandwidth = 1.05 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.48 us    (54.4%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000010.sham  [Shamrock Dump][rank=0]
              - took 7.38 ms, bandwidth = 1.74 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 423.89 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 423.66 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 468.39 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.08 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.048043995000000006 s
Info: compute_slice took 777.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 734.13 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.022168220000000002 s
Info: compute_slice took 752.28 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 740.85 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 729.95 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 741.93 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 1.90 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     : 7.83 us    (2.8%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 253.93 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (72.6%)
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.6532e+05 | 100000 |      1 | 6.049e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.76042359417976 (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     : 7.46 us    (2.3%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 294.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (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.6457e+05 | 100000 |      1 | 6.076e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.815210223605817 (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     : 7.43 us    (2.1%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 332.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.7%)
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.6746e+05 | 100000 |      1 | 5.971e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.9114368093019545 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 50                                                      [SPH][rank=0]
Info: time since start : 302.310392915 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.91 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 1.90 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 425.68 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 436.66 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 473.52 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 424.75 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.049007643000000004 s
Info: compute_slice took 798.65 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 743.95 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.023540298 s
Info: compute_slice took 765.34 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 733.01 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 735.18 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.95 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 1.89 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     : 7.82 us    (2.2%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 323.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (72.3%)
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.6274e+05 | 100000 |      1 | 6.145e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.623587348006158 (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     : 7.56 us    (2.5%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 283.02 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (73.8%)
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.6497e+05 | 100000 |      1 | 6.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.30918921943889 (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.85 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 950.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 259.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.8%)
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.6746e+05 | 100000 |      1 | 5.972e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.271241143899696 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 316.46219199700005 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000011.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_0000011.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (54.3%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000011.sham  [Shamrock Dump][rank=0]
              - took 7.79 ms, bandwidth = 1.64 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.91 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 1.89 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 431.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.91 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 467.42 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 431.41 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.044720422 s
Info: compute_slice took 778.07 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 735.57 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.026765603000000002 s
Info: compute_slice took 777.93 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 755.51 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 735.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 738.60 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 1.90 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     : 7.51 us    (2.4%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 291.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (71.6%)
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.6376e+05 | 100000 |      1 | 6.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.325949895332453 (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     : 7.11 us    (2.2%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 975.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 298.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (73.4%)
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.6476e+05 | 100000 |      1 | 6.069e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.950903977155175 (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.73 us    (2.2%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 280.37 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.6%)
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.6622e+05 | 100000 |      1 | 6.016e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.009244245306306 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 330.647572577 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.90 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 423.67 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.07 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 474.77 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 429.15 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.048773499000000005 s
Info: compute_slice took 782.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.18 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.023558268 s
Info: compute_slice took 756.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 742.79 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 746.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 738.50 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 1.99 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     : 8.48 us    (2.7%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 285.90 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
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.6318e+05 | 100000 |      1 | 6.128e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.483760423206142 (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.39 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 311.02 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (72.3%)
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.6642e+05 | 100000 |      1 | 6.009e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.85354522921473 (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     : 7.46 us    (2.9%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 237.77 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (72.5%)
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.6991e+05 | 100000 |      1 | 5.885e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.2369282086219116 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 59                                                      [SPH][rank=0]
Info: time since start : 344.851520938 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000012.vtk        [VTK Dump][rank=0]
              - took 5.33 ms, bandwidth = 1.05 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.75 us    (55.6%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000012.sham  [Shamrock Dump][rank=0]
              - took 7.27 ms, bandwidth = 1.76 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.89 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 425.45 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 427.17 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 468.60 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 427.10 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.049274813 s
Info: compute_slice took 784.08 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 739.20 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.02379534 s
Info: compute_slice took 759.74 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.91 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 739.66 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 752.24 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 1.89 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     : 7.43 us    (2.1%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 330.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (74.7%)
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.6629e+05 | 100000 |      1 | 6.014e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.208120539587874 (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     : 7.23 us    (1.6%)
   patch tree reduce : 2.04 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 432.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (74.3%)
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.6463e+05 | 100000 |      1 | 6.074e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.159078471360036 (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     : 7.76 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 967.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 308.43 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (70.7%)
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.6054e+05 | 100000 |      1 | 6.229e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.016792000288596 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 358.990143617 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.90 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 433.14 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 441.09 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 471.22 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 435.42 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.045803089000000005 s
Info: compute_slice took 795.10 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 745.84 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.022688382 s
Info: compute_slice took 784.31 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 754.96 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 748.17 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 760.58 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 1.91 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     : 8.72 us    (2.4%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.4%)
   LB compute        : 330.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 5.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (73.6%)
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.5523e+05 | 100000 |      1 | 6.442e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.516779625613598 (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     : 7.28 us    (2.5%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 272.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.8%)
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.6744e+05 | 100000 |      1 | 5.972e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.56149546920903 (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     : 7.20 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (72.4%)
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.6866e+05 | 100000 |      1 | 5.929e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.332474634377265 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 373.26512190200003 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000013.vtk        [VTK Dump][rank=0]
              - took 5.56 ms, bandwidth = 1.01 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.87 us    (55.9%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000013.sham  [Shamrock Dump][rank=0]
              - took 7.28 ms, bandwidth = 1.76 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.89 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 1.90 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 453.70 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 434.03 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 472.59 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 433.55 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.045567214 s
Info: compute_slice took 780.47 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 748.39 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.022704870000000002 s
Info: compute_slice took 756.80 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 742.67 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 730.27 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 736.43 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 1.90 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.75 us    (2.9%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 246.67 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.6%)
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.5946e+05 | 100000 |      1 | 6.271e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.62258648859653 (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     : 7.33 us    (2.4%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 997.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 280.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.7%)
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.5165e+05 | 100000 |      1 | 6.594e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.844756572056273 (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.86 us    (2.6%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 876.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 237.75 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (68.9%)
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.6936e+05 | 100000 |      1 | 5.905e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.188616066646823 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 387.493110586 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.90 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 1.90 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 434.64 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 426.46 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 467.37 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 427.78 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.047451776 s
Info: compute_slice took 774.48 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 735.81 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.023650429 s
Info: compute_slice took 749.02 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 732.23 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 731.81 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 733.50 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 1.89 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     : 7.74 us    (2.6%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 997.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 277.20 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.6%)
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.5846e+05 | 100000 |      1 | 6.311e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.35491967552289 (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     : 7.33 us    (2.1%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 917.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 318.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (72.5%)
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.6602e+05 | 100000 |      1 | 6.023e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.984675118403278 (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.68 us    (2.4%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 302.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (73.9%)
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.6704e+05 | 100000 |      1 | 5.987e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.321697259099892 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 401.584377166 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000014.vtk        [VTK Dump][rank=0]
              - took 5.69 ms, bandwidth = 985.08 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.39 us    (53.3%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000014.sham  [Shamrock Dump][rank=0]
              - took 7.56 ms, bandwidth = 1.69 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.92 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 1.89 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 427.56 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 424.22 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 469.43 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 428.88 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.045748075000000006 s
Info: compute_slice took 774.27 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 733.07 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.025889563 s
Info: compute_slice took 755.15 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 751.54 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 740.50 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 735.61 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 1.89 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     : 7.88 us    (2.8%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 258.63 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (73.5%)
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.6364e+05 | 100000 |      1 | 6.111e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.19232652748256 (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     : 7.34 us    (2.3%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 301.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (67.3%)
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.6398e+05 | 100000 |      1 | 6.098e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.310295433781157 (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.65 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 944.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 234.90 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.3%)
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.6872e+05 | 100000 |      1 | 5.927e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.722810508830493 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 415.72874690500004 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.90 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 1.92 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 424.96 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 435.25 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 530.76 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 443.47 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.046599894 s
Info: compute_slice took 795.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 752.51 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.022415893000000003 s
Info: compute_slice took 759.33 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 751.60 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 769.21 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 753.89 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 1.94 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.88 us    (2.3%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 996.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 313.61 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.7%)
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.6334e+05 | 100000 |      1 | 6.122e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.390944197518802 (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.94 us    (2.7%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 235.06 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.1%)
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.6718e+05 | 100000 |      1 | 5.981e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.193032484498534 (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     : 7.54 us    (2.8%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 242.69 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (70.6%)
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.6815e+05 | 100000 |      1 | 5.947e-01 | 0.0% |   0.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.057659561104447 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 77                                                      [SPH][rank=0]
Info: time since start : 430.07443834300005 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000015.vtk        [VTK Dump][rank=0]
              - took 5.40 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     : 6.95 us    (57.7%)
Info: dump to _to_trash/circular_disc_pn_pot_100000/dump/dump_0000015.sham  [Shamrock Dump][rank=0]
              - took 7.50 ms, bandwidth = 1.71 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576      [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.95 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 1.94 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 467.51 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 463.67 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 545.30 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 472.42 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.047450727000000005 s
Info: compute_slice took 824.53 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 784.74 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.023441388 s
Info: compute_slice took 785.34 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 763.52 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 766.03 ms                                   [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600      [sph::CartesianRender][rank=0]
Info: compute_slice took 771.87 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 1.94 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: (12 minutes 54.414 seconds)

Estimated memory usage: 2530 MB

Gallery generated by Sphinx-Gallery