Note
Go to the end to download the full example code.
Production run: Circular disc & central potential#
This example demonstrates how to run a smoothed particle hydrodynamics (SPH) simulation of a circular disc orbiting around a central point mass potential.
The simulation models:
A central star with a given mass and accretion radius
A gaseous disc with specified mass, inner/outer radii, and vertical structure
Artificial viscosity for angular momentum transport
Locally isothermal equation of state
Also this simulation feature rolling dumps (see purge_old_dumps function) to save disk space.
This example is the accumulation of 3 files in a single one to showcase the complete workflow.
The actual run script (runscript.py)
Plot generation (make_plots.py)
Animation from the plots (plot_to_gif.py)
On a cluster or laptop, one can run the code as follows:
mpirun <your parameters> ./shamrock --sycl-cfg 0:0 --loglevel 1 --rscript runscript.py
then after the run is done (or while it is running), one can run the following to generate the plots:
python make_plots.py
Runscript (runscript.py)#
The runscript is the actual simulation with on the fly analysis & rolling dumps
44 import glob
45 import json
46 import os # for makedirs
47
48 import numpy as np
49
50 import shamrock
51
52 # If we use the shamrock executable to run this script instead of the python interpreter,
53 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
54 if not shamrock.sys.is_initialized():
55 shamrock.change_loglevel(1)
56 shamrock.sys.init("0:0")
-> 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_racc = 0.1
100
101 # Disc parameter
102 disc_mass = 0.01 # sol mass
103 rout = 10.0 # au
104 rin = 1.0 # au
105 H_r_0 = 0.05
106 q = 0.5
107 p = 3.0 / 2.0
108 r0 = 1.0
109
110 # Viscosity parameter
111 alpha_AV = 1.0e-3 / 0.08
112 alpha_u = 1.0
113 beta_AV = 2.0
114
115 # Integrator parameters
116 C_cour = 0.3
117 C_force = 0.25
118
119 sim_folder = f"_to_trash/circular_disc_central_pot_{Npart}/"
120
121 dump_folder = sim_folder + "dump/"
122 analysis_folder = sim_folder + "analysis/"
123 plot_folder = analysis_folder + "plots/"
124
125 dump_prefix = dump_folder + "dump_"
126
127
128 # Disc profiles
129 def sigma_profile(r):
130 sigma_0 = 1.0 # We do not care as it will be renormalized
131 return sigma_0 * (r / r0) ** (-p)
132
133
134 def kep_profile(r):
135 return (G * center_mass / r) ** 0.5
136
137
138 def omega_k(r):
139 return kep_profile(r) / r
140
141
142 def cs_profile(r):
143 cs_in = (H_r_0 * r0) * omega_k(r0)
144 return ((r / r0) ** (-q)) * cs_in
Create the dump directory if it does not exist
149 if shamrock.sys.world_rank() == 0:
150 os.makedirs(sim_folder, exist_ok=True)
151 os.makedirs(dump_folder, exist_ok=True)
152 os.makedirs(analysis_folder, exist_ok=True)
153 os.makedirs(plot_folder, exist_ok=True)
Utility functions and quantities deduced from the base one
158 # Deduced quantities
159 pmass = disc_mass / Npart
160
161 bsize = rout * 2
162 bmin = (-bsize, -bsize, -bsize)
163 bmax = (bsize, bsize, bsize)
164
165 cs0 = cs_profile(r0)
166
167
168 def rot_profile(r):
169 return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
170
171
172 def H_profile(r):
173 H = cs_profile(r) / omega_k(r)
174 # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
175 fact = 1.0
176 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)
184 ctx = shamrock.Context()
185 ctx.pdata_layout_new()
Attach a SPH model to the context
190 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
Dump handling
197 def get_vtk_dump_name(idump):
198 return dump_prefix + f"{idump:07}" + ".vtk"
199
200
201 def get_ph_dump_name(idump):
202 return dump_prefix + f"{idump:07}" + ".phdump"
203
204
205 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)
Load the last dump if it exists, setup otherwise
211 def setup_model():
212 global disc_mass
213
214 # Generate the default config
215 cfg = model.gen_default_config()
216 cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
217 cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
218
219 cfg.add_ext_force_point_mass(center_mass, center_racc)
220 cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize) # kill particles outside the simulation box
221
222 cfg.set_units(codeu)
223 cfg.set_particle_mass(pmass)
224 # Set the CFL
225 cfg.set_cfl_cour(C_cour)
226 cfg.set_cfl_force(C_force)
227
228 # Enable this to debug the neighbor counts
229 # cfg.set_show_neigh_stats(True)
230
231 # Standard way to set the smoothing length (e.g. Price et al. 2018)
232 cfg.set_smoothing_length_density_based()
233
234 # Standard density based smoothing length but with a neighbor count limit
235 # Use it if you have large slowdowns due to giant particles
236 # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
237 # cfg.set_smoothing_length_density_based_neigh_lim(500)
238
239 cfg.set_save_dt_to_fields(True)
240
241 # Set the solver config to be the one stored in cfg
242 model.set_solver_config(cfg)
243
244 # Print the solver config
245 model.get_current_config().print_status()
246
247 # Init the scheduler & fields
248 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
249
250 # Set the simulation box size
251 model.resize_simulation_box(bmin, bmax)
252
253 # Create the setup
254
255 setup = model.get_setup()
256 gen_disc = setup.make_generator_disc_mc(
257 part_mass=pmass,
258 disc_mass=disc_mass,
259 r_in=rin,
260 r_out=rout,
261 sigma_profile=sigma_profile,
262 H_profile=H_profile,
263 rot_profile=rot_profile,
264 cs_profile=cs_profile,
265 random_seed=666,
266 )
267
268 # Print the dot graph of the setup
269 print(gen_disc.get_dot())
270
271 # Apply the setup
272 setup.apply_setup(gen_disc)
273
274 # correct the momentum and barycenter of the disc to 0
275 analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
276 total_momentum = analysis_momentum.get_total_momentum()
277
278 if shamrock.sys.world_rank() == 0:
279 print(f"disc momentum = {total_momentum}")
280
281 model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
282
283 # Correct the barycenter
284 analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
285 barycenter, disc_mass = analysis_barycenter.get_barycenter()
286
287 if shamrock.sys.world_rank() == 0:
288 print(f"disc barycenter = {barycenter}")
289
290 model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
291
292 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
293
294 if shamrock.sys.world_rank() == 0:
295 print(f"disc momentum after correction = {total_momentum}")
296
297 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
298
299 if shamrock.sys.world_rank() == 0:
300 print(f"disc barycenter after correction = {barycenter}")
301
302 if not np.allclose(total_momentum, 0.0):
303 raise RuntimeError("disc momentum is not 0")
304 if not np.allclose(barycenter, 0.0):
305 raise RuntimeError("disc barycenter is not 0")
306
307 # Run a single step to init the integrator and smoothing length of the particles
308 # Here the htolerance is the maximum factor of evolution of the smoothing length in each
309 # Smoothing length iterations, increasing it affects the performance negatively but increases the
310 # convergence rate of the smoothing length
311 # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
312 # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
313 # more slowly at the first timestep
314
315 model.change_htolerances(coarse=1.3, fine=1.1)
316 model.timestep()
317 model.change_htolerances(coarse=1.1, fine=1.1)
318
319
320 dump_helper.load_last_dump_or(setup_model)
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"alpha_AV": 0.0125,
"alpha_u": 1.0,
"beta_AV": 2.0,
"type": "constant_disc"
},
"boundary_config": {
"bc_type": "free"
},
"cfl_config": {
"cfl_cour": 0.3,
"cfl_force": 0.25,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"dust_config": {
"ballabio_ts_limiter": false,
"drag_mode": {
"type": "none"
},
"evol_mode": {
"type": "none"
},
"mode": {
"type": "none"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs0": 0.31415811727277826,
"eos_type": "locally_isothermal_lp07",
"q": 0.5,
"r0": 1.0
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": [
{
"Racc": 0.1,
"central_mass": 1.0,
"central_pos": [
0.0,
0.0,
0.0
],
"force_type": "point_mass"
}
]
},
"gpart_mass": 1e-07,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M4<f64>",
"mhd_config": {
"mhd_type": "none"
},
"neigh_cache_strategy": "two_stage",
"particle_killing": [
{
"center": [
0.0,
0.0,
0.0
],
"radius": 20.0,
"type": "sphere"
}
],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": true,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_cfl_detail": false,
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": {
"unit_current": 1.0,
"unit_length": 149597870700.0,
"unit_lumint": 1.0,
"unit_mass": 1.98847e+30,
"unit_qte": 1.0,
"unit_temperature": 1.0,
"unit_time": 31557600.0
}
}
]
------------------------------------
Warning: make_generator_disc_mc: with the current EOS, cs_profile is ignored [SPHSetup][rank=0]
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}
SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 rank min = 5.3e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.19290573800000002 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 : 21.07 us (78.2%)
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 : 631.00 ns (0.1%)
patch tree reduce : 1.83 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 609.95 us (97.5%)
LB move op cnt : 0
LB apply : 5.30 us (0.8%)
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.006459491 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.9% 0.0% | 2.15 GB | 2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.208968601 s
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}} [algs][rank=0]
disc momentum = (-5.810951242480584e-05, 2.0681541048100417e-06, 0.0)
disc barycenter = (-0.015207723587746209, 0.015657581335006374, -0.00025450167927213325)
disc momentum after correction = (-1.757169849079046e-18, -5.857232830263487e-18, 0.0)
disc barycenter after correction = (-1.786900705527672e-15, 6.979551485375435e-16, -6.060520737604519e-17)
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.6%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 209.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}} [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.37741680646819326 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.49064184840865127 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.6378344029312467 unconverged cnt = 99997
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.8291847238106208 unconverged cnt = 99992
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 99984
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 99961
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 99871
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 99438
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 92881
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 46416
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 1511
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 6
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0466294497746275e-17,2.62545540863357e-18,0)
sum a = (-5.410646072394388e-05,-0.00011583745354600335,-1.922898092581931e-05)
sum e = 0.050002970624538845
sum de = 1.0112079034923695e-05
Info: cfl dt = 7.833195568092581e-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 | 4.9628e+04 | 100000 | 1 | 2.015e+00 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
On the fly analysis
325 def save_rho_integ(ext, arr_rho, iplot):
326 if shamrock.sys.world_rank() == 0:
327 metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
328 np.save(plot_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
329
330 with open(plot_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
331 json.dump(metadata, fp)
332
333
334 def save_analysis_data(filename, key, value, ianalysis):
335 """Helper to save analysis data to a JSON file."""
336 if shamrock.sys.world_rank() == 0:
337 filepath = os.path.join(analysis_folder, filename)
338 try:
339 with open(filepath, "r") as fp:
340 data = json.load(fp)
341 except (FileNotFoundError, json.JSONDecodeError):
342 data = {key: []}
343 data[key] = data[key][:ianalysis]
344 data[key].append({"t": model.get_time(), key: value})
345 with open(filepath, "w") as fp:
346 json.dump(data, fp, indent=4)
347
348
349 from shamrock.utils.analysis import (
350 ColumnDensityPlot,
351 ColumnParticleCount,
352 PerfHistory,
353 SliceDensityPlot,
354 SliceDiffVthetaProfile,
355 SliceDtPart,
356 SliceVzPlot,
357 VerticalShearGradient,
358 )
359
360 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
361
362 column_density_plot = ColumnDensityPlot(
363 model,
364 ext_r=rout * 1.5,
365 nx=1024,
366 ny=1024,
367 ex=(1, 0, 0),
368 ey=(0, 1, 0),
369 center=(0, 0, 0),
370 analysis_folder=analysis_folder,
371 analysis_prefix="rho_integ_normal",
372 )
373
374 column_density_plot_hollywood = ColumnDensityPlot(
375 model,
376 ext_r=rout * 1.5,
377 nx=1024,
378 ny=1024,
379 ex=(1, 0, 0),
380 ey=(0, 1, 0),
381 center=(0, 0, 0),
382 analysis_folder=analysis_folder,
383 analysis_prefix="rho_integ_hollywood",
384 )
385
386 vertical_density_plot = SliceDensityPlot(
387 model,
388 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
389 nx=1920,
390 ny=1080,
391 ex=(1, 0, 0),
392 ey=(0, 0, 1),
393 center=(0, 0, 0),
394 analysis_folder=analysis_folder,
395 analysis_prefix="rho_slice",
396 )
397
398 v_z_slice_plot = SliceVzPlot(
399 model,
400 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
401 nx=1920,
402 ny=1080,
403 ex=(1, 0, 0),
404 ey=(0, 0, 1),
405 center=(0, 0, 0),
406 analysis_folder=analysis_folder,
407 analysis_prefix="v_z_slice",
408 do_normalization=True,
409 )
410
411 relative_azy_velocity_slice_plot = SliceDiffVthetaProfile(
412 model,
413 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
414 nx=1920,
415 ny=1080,
416 ex=(1, 0, 0),
417 ey=(0, 0, 1),
418 center=((rin + rout) / 2, 0, 0),
419 analysis_folder=analysis_folder,
420 analysis_prefix="relative_azy_velocity_slice",
421 velocity_profile=kep_profile,
422 do_normalization=True,
423 min_normalization=1e-9,
424 )
425
426 vertical_shear_gradient_slice_plot = VerticalShearGradient(
427 model,
428 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
429 nx=1920,
430 ny=1080,
431 ex=(1, 0, 0),
432 ey=(0, 0, 1),
433 center=((rin + rout) / 2, 0, 0),
434 analysis_folder=analysis_folder,
435 analysis_prefix="vertical_shear_gradient_slice",
436 do_normalization=True,
437 min_normalization=1e-9,
438 )
439
440 dt_part_slice_plot = SliceDtPart(
441 model,
442 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
443 nx=1920,
444 ny=1080,
445 ex=(1, 0, 0),
446 ey=(0, 0, 1),
447 center=((rin + rout) / 2, 0, 0),
448 analysis_folder=analysis_folder,
449 analysis_prefix="dt_part_slice",
450 )
451
452 column_particle_count_plot = ColumnParticleCount(
453 model,
454 ext_r=rout * 1.5,
455 nx=1024,
456 ny=1024,
457 ex=(1, 0, 0),
458 ey=(0, 1, 0),
459 center=(0, 0, 0),
460 analysis_folder=analysis_folder,
461 analysis_prefix="particle_count",
462 )
463
464
465 def analysis(ianalysis):
466 column_density_plot.analysis_save(ianalysis)
467 column_density_plot_hollywood.analysis_save(ianalysis)
468 vertical_density_plot.analysis_save(ianalysis)
469 v_z_slice_plot.analysis_save(ianalysis)
470 relative_azy_velocity_slice_plot.analysis_save(ianalysis)
471 vertical_shear_gradient_slice_plot.analysis_save(ianalysis)
472 dt_part_slice_plot.analysis_save(ianalysis)
473 column_particle_count_plot.analysis_save(ianalysis)
474
475 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
476
477 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
478
479 potential_energy = shamrock.model_sph.analysisEnergyPotential(
480 model=model
481 ).get_potential_energy()
482
483 kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
484
485 save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
486 save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
487 save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
488 save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
489 save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
490
491 perf_analysis.analysis_save(ianalysis)
Evolve the simulation
496 model.solver_logs_reset_cumulated_step_time()
497 model.solver_logs_reset_step_count()
498
499 t_start = model.get_time()
500
501 idump = 0
502 iplot = 0
503 istop = 0
504 for ttarg in t_stop:
505 if ttarg >= t_start:
506 model.evolve_until(ttarg)
507
508 if istop % dump_freq_stop == 0:
509 model.do_vtk_dump(get_vtk_dump_name(idump), True)
510 dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
511
512 # dump = model.make_phantom_dump()
513 # dump.save_dump(get_ph_dump_name(idump))
514
515 if istop % plot_freq_stop == 0:
516 analysis(iplot)
517
518 if istop % dump_freq_stop == 0:
519 idump += 1
520
521 if istop % plot_freq_stop == 0:
522 iplot += 1
523
524 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 : 9.795519957 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
- took 18.74 ms, bandwidth = 298.77 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (32.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
- took 17.88 ms, bandwidth = 716.48 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.35 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000000.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000000.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 316.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 318.33 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_central_pot_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000000.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 338.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 322.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000000.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.025926550000000003 s
Info: compute_slice took 559.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 539.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000000.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009478166000000001 s
Info: compute_slice took 539.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000000.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 537.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 537.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000000.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000000.json
Warning: step count is 0, skipping save of perf history
Info: evolve_until (target_time = 0.01s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 7.833195568092581e-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.50 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 255.72 us (92.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.238264892128996e-09,-9.07377427777618e-09,-1.5062436816706453e-09)
sum a = (-5.414549273837265e-05,-0.00011592916314150674,-1.9228942062385582e-05)
sum e = 0.05000297317141568
sum de = 1.047698672321726e-05
Info: cfl dt = 0.002663297962155027 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4829e+05 | 100000 | 1 | 4.028e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7001602048138019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833195568092581e-05, dt = 0.002663297962155027 ----------------
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.63 us (3.9%)
patch tree reduce : 1.73 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 172.32 us (88.7%)
LB move op cnt : 0
LB apply : 3.85 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (73.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.484453740805179e-07,-3.1783127013743875e-07,-5.271864436869509e-08)
sum a = (-5.5402858999969994e-05,-0.00011910758691039168,-1.9226514546375148e-05)
sum e = 0.05000502786345026
sum de = 2.2808420068081935e-05
Info: cfl dt = 0.004305100970696 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6183e+05 | 100000 | 1 | 3.819e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.10366366407823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.002741629917835953, dt = 0.004305100970696 ----------------
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 (3.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.04 us (89.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (73.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8863464664910694e-07,-8.348340029214334e-07,-1.354874982061732e-07)
sum a = (-5.7140734788286374e-05,-0.00012448434310155854,-1.9218046179059584e-05)
sum e = 0.05000841341637159
sum de = 4.257490837173055e-05
Info: cfl dt = 0.005275348061182332 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.1719e+05 | 100000 | 1 | 4.604e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.660660179887316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007046730888531953, dt = 0.002953269111468047 ----------------
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.59 us (3.8%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.60 us (0.7%)
LB compute : 204.02 us (89.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (78.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.611274790803193e-07,-1.2140435074206102e-06,-1.9222533178138138e-07)
sum a = (-5.811499785339531e-05,-0.00012833503819476315,-1.9208988486298748e-05)
sum e = 0.05000577627928519
sum de = 5.650458874574532e-05
Info: cfl dt = 0.005902529477645277 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.2107e+05 | 100000 | 1 | 4.524e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.503410872455746 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 5 [SPH][rank=0]
Info: time since start : 20.275582786 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000001.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000001.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 315.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.78 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000001.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 338.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 316.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000001.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.022475514000000002 s
Info: compute_slice took 563.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000001.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008942933 s
Info: compute_slice took 549.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 543.78 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000001.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 539.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 543.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000001.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000001.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.02s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.01, dt = 0.005902529477645277 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.96 us (3.8%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 187.99 us (89.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (74.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.055915975064131e-07,-1.97723092280411e-06,-3.0559357765538246e-07)
sum a = (-5.950200010389029e-05,-0.00013639219506723257,-1.9182968771839818e-05)
sum e = 0.050013595461709574
sum de = 8.321964369365497e-05
Info: cfl dt = 0.006896793722792809 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5510e+05 | 100000 | 1 | 3.920e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.205862530601344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015902529477645276, dt = 0.004097470522354724 ----------------
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.59 us (4.1%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 183.75 us (88.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (76.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1534926997891047e-06,-2.559872724553431e-06,-3.841184356634501e-07)
sum a = (-6.00100293235098e-05,-0.0001422457740540155,-1.915869669806699e-05)
sum e = 0.050008858235199
sum de = 0.00010278015100561226
Info: cfl dt = 0.007165314836586345 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6151e+05 | 100000 | 1 | 3.824e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.57552881884316 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 7 [SPH][rank=0]
Info: time since start : 29.777162041 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
- took 3.70 ms, bandwidth = 1.51 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (54.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
- took 4.66 ms, bandwidth = 2.75 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000002.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000002.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000002.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 335.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.78 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000002.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.025301167000000003 s
Info: compute_slice took 557.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 587.84 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000002.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0101875 s
Info: compute_slice took 544.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000002.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 546.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 542.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.02, dt = 0.007165314836586345 ----------------
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.57 us (3.8%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 179.10 us (89.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5845242706112293e-06,-3.591100913500095e-06,-5.213468023103676e-07)
sum a = (-5.995279496087463e-05,-0.00015292006101694634,-1.9104038805491547e-05)
sum e = 0.0500195077223299
sum de = 0.00013479815564190712
Info: cfl dt = 0.007254296311274258 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5150e+05 | 100000 | 1 | 3.976e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.87436570441434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.027165314836586345, dt = 0.002834685163413654 ----------------
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.94 us (4.3%)
patch tree reduce : 1.84 us (1.0%)
gen split merge : 841.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 162.65 us (87.6%)
LB move op cnt : 0
LB apply : 3.64 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (79.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7542665178843698e-06,-4.062823455028085e-06,-5.75304917169269e-07)
sum a = (-5.9589295809454603e-05,-0.00015727925716863924,-1.9078129682329873e-05)
sum e = 0.05000763582715896
sum de = 0.00014929818035856878
Info: cfl dt = 0.00737105938371397 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5458e+05 | 100000 | 1 | 3.928e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.979043856422642 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 9 [SPH][rank=0]
Info: time since start : 39.348806902 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.34 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000003.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000003.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 321.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 327.48 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000003.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 346.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 316.75 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000003.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.021890624 s
Info: compute_slice took 564.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000003.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008750781000000001 s
Info: compute_slice took 543.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 537.74 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000003.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 537.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.04s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.03, dt = 0.00737105938371397 ----------------
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.42 us (4.3%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 174.34 us (88.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.192987553102252e-06,-5.228316673773382e-06,-7.158942218844053e-07)
sum a = (-5.769657725787134e-05,-0.00016889604749535604,-1.899941638730548e-05)
sum e = 0.050021982593798
sum de = 0.00018201582179873743
Info: cfl dt = 0.0074876299961111805 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6464e+05 | 100000 | 1 | 3.779e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.22440971874197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03737105938371397, dt = 0.0026289406162860324 ----------------
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.56 us (4.6%)
patch tree reduce : 1.76 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.7%)
LB compute : 160.30 us (87.0%)
LB move op cnt : 0
LB apply : 3.60 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3376927580569455e-06,-5.715148378631466e-06,-7.655524591247685e-07)
sum a = (-5.668604564247672e-05,-0.00017312281449644135,-1.8967389611712375e-05)
sum e = 0.05000904083141202
sum de = 0.0001958095756836955
Info: cfl dt = 0.007424416986969313 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6591e+05 | 100000 | 1 | 3.761e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.166310951680174 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 11 [SPH][rank=0]
Info: time since start : 48.839836067 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
- took 3.60 ms, bandwidth = 1.55 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (56.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
- took 5.00 ms, bandwidth = 2.56 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000004.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.35 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000004.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 325.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 327.51 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000004.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 348.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 331.38 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000004.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.022956727000000003 s
Info: compute_slice took 576.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 558.55 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000004.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.01036327 s
Info: compute_slice took 562.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 562.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000004.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 561.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 555.16 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.04, dt = 0.007424416986969313 ----------------
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.68 us (3.6%)
patch tree reduce : 1.98 us (1.1%)
gen split merge : 872.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 166.79 us (88.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 691.00 ns (57.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.757225284439061e-06,-7.006040303133841e-06,-9.063321705108463e-07)
sum a = (-5.284490881909661e-05,-0.00018521181544718147,-1.8865762159380302e-05)
sum e = 0.050024284727416324
sum de = 0.00022870386023128212
Info: cfl dt = 0.007027005849700682 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 | 2.4316e+05 | 100000 | 1 | 4.113e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.99100337186704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.047424416986969316, dt = 0.002575583013030687 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (3.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 183.75 us (89.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.879072633185294e-06,-7.527945600824017e-06,-9.545452447647085e-07)
sum a = (-5.116971442713536e-05,-0.00018944328295413242,-1.882666573214108e-05)
sum e = 0.050011151213686454
sum de = 0.00024239743776736117
Info: cfl dt = 0.006933124940650155 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5611e+05 | 100000 | 1 | 3.905e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.74636910544282 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 13 [SPH][rank=0]
Info: time since start : 58.819786541000006 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.36 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000005.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000005.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 319.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 326.55 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000005.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 342.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 325.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000005.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.021692683 s
Info: compute_slice took 575.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 574.02 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000005.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009089841000000001 s
Info: compute_slice took 566.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 554.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000005.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 552.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.93 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.35 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.06s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.05, dt = 0.006933124940650155 ----------------
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.29 us (4.3%)
patch tree reduce : 1.70 us (0.9%)
gen split merge : 1.11 us (0.6%)
split / merge op : 0/0
apply split merge : 1.30 us (0.7%)
LB compute : 171.93 us (88.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2316813553842655e-06,-8.846828798615946e-06,-1.0850225224545663e-06)
sum a = (-4.576095096137078e-05,-0.00020085432459949402,-1.871164182380555e-05)
sum e = 0.05002468719273895
sum de = 0.00027335503026794546
Info: cfl dt = 0.006612302262868752 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5040e+05 | 100000 | 1 | 3.994e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.49742944387909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05693312494065016, dt = 0.003066875059349841 ----------------
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.38 us (4.4%)
patch tree reduce : 1.83 us (1.0%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.7%)
LB compute : 165.82 us (87.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (77.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3532746581311164e-06,-9.502381006011007e-06,-1.1420100525196522e-06)
sum a = (-4.294954990759232e-05,-0.00020589272112603847,-1.8656240190628165e-05)
sum e = 0.050014593359732865
sum de = 0.0002891193408272671
Info: cfl dt = 0.006505741296717666 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5134e+05 | 100000 | 1 | 3.979e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.749567264120152 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 15 [SPH][rank=0]
Info: time since start : 68.53257612 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
- took 3.92 ms, bandwidth = 1.43 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (57.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
- took 5.33 ms, bandwidth = 2.40 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.34 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.34 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000006.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 324.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 324.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 345.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 323.42 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000006.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.021560878000000002 s
Info: compute_slice took 578.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 547.12 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000006.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008870827000000001 s
Info: compute_slice took 558.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 584.96 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000006.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 554.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 539.06 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000006.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000006.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.07s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.06, dt = 0.006505741296717666 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (3.2%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 204.49 us (90.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.628382210753996e-06,-1.0849591850858459e-05,-1.2632977698257897e-06)
sum a = (-3.612328095541214e-05,-0.00021649140053687843,-1.852960057843063e-05)
sum e = 0.050025906655153385
sum de = 0.00031836092924468674
Info: cfl dt = 0.006259339976005924 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 | 2.4864e+05 | 100000 | 1 | 4.022e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.23249123345962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06650574129671766, dt = 0.003494258703282349 ----------------
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.0%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 361.92 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (73.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7324013297161377e-06,-1.164054494454761e-05,-1.3276330456378803e-06)
sum a = (-3.197454604005028e-05,-0.00022210995660050002,-1.8456513740059534e-05)
sum e = 0.050018514091891626
sum de = 0.00033587126129710245
Info: cfl dt = 0.006150597896900748 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5106e+05 | 100000 | 1 | 3.983e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.58204179930291 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 17 [SPH][rank=0]
Info: time since start : 78.2468181 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000007.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000007.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.64 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000007.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 333.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 319.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000007.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020876994000000003 s
Info: compute_slice took 567.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 543.05 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000007.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.010960055000000002 s
Info: compute_slice took 560.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 543.72 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000007.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 542.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 542.03 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000007.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000007.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.07, dt = 0.006150597896900748 ----------------
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.14 us (3.1%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 208.10 us (90.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.921815528797755e-06,-1.3016470320696663e-05,-1.441023948071073e-06)
sum a = (-2.384990703809118e-05,-0.00023180874393069356,-1.831934126795248e-05)
sum e = 0.05002793717833204
sum de = 0.00036362233614806096
Info: cfl dt = 0.00613769929827051 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5682e+05 | 100000 | 1 | 3.894e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.865556091121384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07615059789690075, dt = 0.003849402103099253 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.08 us (3.7%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 196.73 us (89.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (72.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.988637717330012e-06,-1.3938622057575026e-05,-1.511120612516097e-06)
sum a = (-1.8236206387116608e-05,-0.00023772626008310003,-1.8228024419874982e-05)
sum e = 0.050022848983678425
sum de = 0.0003825110112219305
Info: cfl dt = 0.0060569495503934555 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5151e+05 | 100000 | 1 | 3.976e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.85354896282026 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 19 [SPH][rank=0]
Info: time since start : 87.78106452600001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
- took 3.84 ms, bandwidth = 1.46 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (58.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
- took 5.13 ms, bandwidth = 2.50 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000008.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000008.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 325.44 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000008.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 330.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 315.97 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000008.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020545041 s
Info: compute_slice took 560.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 541.97 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000008.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008887141000000001 s
Info: compute_slice took 544.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.07 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000008.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 557.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 567.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000008.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000008.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.09s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.08, dt = 0.0060569495503934555 ----------------
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 : 11.96 us (4.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 250.77 us (89.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (80.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0882888038597796e-06,-1.5389907471263737e-05,-1.6213510791970986e-06)
sum a = (-8.5835395228762e-06,-0.00024673456166993953,-1.807591771018695e-05)
sum e = 0.05003146186788357
sum de = 0.00040974992085482165
Info: cfl dt = 0.0058468170571444765 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4056e+05 | 100000 | 1 | 4.157e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.45318310524169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08605694955039346, dt = 0.003943050449606536 ----------------
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.15 us (3.7%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 224.73 us (90.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (77.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0929012751230916e-06,-1.6390075709719168e-05,-1.6921646833178804e-06)
sum a = (-1.769382970805103e-06,-0.00025236952744129556,-1.797144210100492e-05)
sum e = 0.050027118570122195
sum de = 0.00042891782181672086
Info: cfl dt = 0.005704360613177079 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5220e+05 | 100000 | 1 | 3.965e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.79948910591014 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 21 [SPH][rank=0]
Info: time since start : 97.49773769500001 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000009.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000009.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.68 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000009.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 332.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.08 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000009.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020745149 s
Info: compute_slice took 561.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 544.80 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000009.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009199584 s
Info: compute_slice took 549.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 546.58 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000009.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 537.82 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000009.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000009.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.09, dt = 0.005704360613177079 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (3.0%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 230.26 us (91.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (74.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.089560192133663e-06,-1.784079197918165e-05,-1.7944742935019593e-06)
sum a = (8.817809983948978e-06,-0.00026014384657395764,-1.7812786670095972e-05)
sum e = 0.05003447232750725
sum de = 0.000454518737067237
Info: cfl dt = 0.005508626356485613 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6386e+05 | 100000 | 1 | 3.790e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.18611390775492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09570436061317708, dt = 0.004295639386822925 ----------------
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 (4.1%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 180.93 us (88.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (73.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.021485477003048e-06,-1.8980449892688327e-05,-1.8705390876155295e-06)
sum a = (1.7346844764956927e-05,-0.0002656696610752475,-1.7687538326064988e-05)
sum e = 0.05003247105388548
sum de = 0.0004748706738467715
Info: cfl dt = 0.006151260775230459 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6402e+05 | 100000 | 1 | 3.788e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.82825434039854 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 23 [SPH][rank=0]
Info: time since start : 106.97707118800001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
- took 3.62 ms, bandwidth = 1.55 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (53.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
- took 4.46 ms, bandwidth = 2.87 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000010.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000010.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 334.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 324.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000010.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.024156887000000002 s
Info: compute_slice took 570.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 542.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000010.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.010512001 s
Info: compute_slice took 549.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 543.84 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000010.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 547.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 544.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.11s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.1, dt = 0.006151260775230459 ----------------
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 : 12.04 us (4.9%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 216.85 us (88.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (79.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.896461682364455e-06,-2.0626521711246143e-05,-1.979070737471151e-06)
sum a = (3.037113954256053e-05,-0.0002730237149368842,-1.7499677235958285e-05)
sum e = 0.05004099916696263
sum de = 0.0005019259161877093
Info: cfl dt = 0.005907960953798205 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6205e+05 | 100000 | 1 | 3.816e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.02930369446337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10615126077523046, dt = 0.00384873922476954 ----------------
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.39 us (4.5%)
patch tree reduce : 1.85 us (1.0%)
gen split merge : 881.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 162.61 us (88.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (72.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.739513169500184e-06,-2.1699937143738564e-05,-2.045844640392611e-06)
sum a = (3.898984942561402e-05,-0.00027726114660314905,-1.7377126786635854e-05)
sum e = 0.05003642070330896
sum de = 0.00052041560649074
Info: cfl dt = 0.0057701517282328155 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6225e+05 | 100000 | 1 | 3.813e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.33607438825565 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 25 [SPH][rank=0]
Info: time since start : 116.51815764300001 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000011.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000011.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 317.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 315.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000011.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 342.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 324.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000011.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.021706253000000002 s
Info: compute_slice took 563.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 541.66 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000011.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009711383 s
Info: compute_slice took 563.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 560.09 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000011.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 558.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 546.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000011.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000011.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.12s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.11, dt = 0.0057701517282328155 ----------------
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 (4.0%)
patch tree reduce : 1.86 us (1.0%)
gen split merge : 1.04 us (0.6%)
split / merge op : 0/0
apply split merge : 1.63 us (0.9%)
LB compute : 165.39 us (88.0%)
LB move op cnt : 0
LB apply : 3.97 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4979502390685866e-06,-2.3307930412729922e-05,-2.1458774661915775e-06)
sum a = (5.2564525185546765e-05,-0.00028303292333555033,-1.718627901159183e-05)
sum e = 0.05004476883100966
sum de = 0.0005454582641240165
Info: cfl dt = 0.005571011968887631 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4878e+05 | 100000 | 1 | 4.020e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.67764382620182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11577015172823282, dt = 0.004229848271767173 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (4.0%)
patch tree reduce : 1.96 us (1.0%)
gen split merge : 1.05 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 169.05 us (88.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2364463036460663e-06,-2.4521768748076238e-05,-2.218022208457371e-06)
sum a = (6.299237582954577e-05,-0.00028679099319909175,-1.704104596401304e-05)
sum e = 0.05004273559420365
sum de = 0.0005650438414234779
Info: cfl dt = 0.005437711935288787 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5279e+05 | 100000 | 1 | 3.956e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.492807866833516 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 27 [SPH][rank=0]
Info: time since start : 126.12902138300001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
- took 4.20 ms, bandwidth = 1.33 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (54.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
- took 5.17 ms, bandwidth = 2.48 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000012.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000012.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 315.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000012.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 332.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000012.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.025720017 s
Info: compute_slice took 574.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 550.71 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000012.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.010111384000000001 s
Info: compute_slice took 540.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 545.12 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000012.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 576.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 572.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.43 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.13s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.12, dt = 0.005437711935288787 ----------------
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.40 us (3.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 196.97 us (90.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 752.00 ns (59.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.871857796763737e-06,-2.608920358740238e-05,-2.3103793506080377e-06)
sum a = (7.696179305396028e-05,-0.0002909857693376761,-1.6847820289060977e-05)
sum e = 0.050049212513248495
sum de = 0.0005884443317307025
Info: cfl dt = 0.005273791022856361 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.3207e+05 | 100000 | 1 | 4.309e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.42851505706548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12543771193528877, dt = 0.004562288064711234 ----------------
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.69 us (3.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.22 us (90.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4827550934877493e-06,-2.742816948197708e-05,-2.386718607249771e-06)
sum a = (8.914446347517325e-05,-0.00029392007152900215,-1.6680142645309423e-05)
sum e = 0.05004945371607794
sum de = 0.0006087754738721251
Info: cfl dt = 0.005146949656574843 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4950e+05 | 100000 | 1 | 4.008e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.97915440151531 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 29 [SPH][rank=0]
Info: time since start : 135.90825339 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.36 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000013.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000013.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 317.75 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000013.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 332.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.91 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000013.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.022049552 s
Info: compute_slice took 555.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.63 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000013.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009660638000000001 s
Info: compute_slice took 538.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.90 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000013.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 534.79 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000013.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000013.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.13, dt = 0.005146949656574843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.9%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 226.11 us (91.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9961426018779925e-06,-2.8947654859120536e-05,-2.4721879648532614e-06)
sum a = (0.00010336191734229939,-0.00029654809574516434,-1.648498976128116e-05)
sum e = 0.050054275831988425
sum de = 0.0006306425438658734
Info: cfl dt = 0.0050110584349343104 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6024e+05 | 100000 | 1 | 3.843e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.2190295494872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13514694965657484, dt = 0.004853050343425175 ----------------
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.47 us (4.1%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.7%)
LB compute : 184.02 us (88.8%)
LB move op cnt : 0
LB apply : 4.32 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4579337537837765e-06,-3.0393580851194036e-05,-2.551688229040902e-06)
sum a = (0.00011719360838864593,-0.00029832900898933126,-1.6295270448537475e-05)
sum e = 0.050056556890539526
sum de = 0.0006513810775804906
Info: cfl dt = 0.005092429851183974 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6250e+05 | 100000 | 1 | 3.810e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.86084745112463 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 145.402817099 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
- took 3.43 ms, bandwidth = 1.63 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (57.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
- took 5.03 ms, bandwidth = 2.55 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.35 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.35 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000014.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 317.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.60 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 330.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.63 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000014.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020751537 s
Info: compute_slice took 586.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 547.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000014.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009975826 s
Info: compute_slice took 560.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 567.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000014.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 541.26 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000014.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.15s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.14, dt = 0.005092429851183974 ----------------
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.80 us (3.5%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 972.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 173.43 us (89.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.275705775654011e-07,-3.191712183284917e-05,-2.6342103920182084e-06)
sum a = (0.000132113592605433,-0.0002994329199556476,-1.6090339765712998e-05)
sum e = 0.050060621212673496
sum de = 0.0006724990942802383
Info: cfl dt = 0.00492427735729416 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6397e+05 | 100000 | 1 | 3.788e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.392766690995735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14509242985118398, dt = 0.004907570148816015 ----------------
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.80 us (3.0%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 203.54 us (90.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 741.00 ns (59.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.412243677396951e-07,-3.338942068700097e-05,-2.7126530655734186e-06)
sum a = (0.00014684587531765044,-0.0002997229795699734,-1.5887279676709694e-05)
sum e = 0.05006345310911218
sum de = 0.0006927110917688117
Info: cfl dt = 0.00477600775606723 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 | 2.2807e+05 | 100000 | 1 | 4.385e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.29410342105653 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 33 [SPH][rank=0]
Info: time since start : 155.102923527 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000015.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000015.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000015.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 335.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000015.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020392773000000003 s
Info: compute_slice took 555.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.92 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000015.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009930017000000001 s
Info: compute_slice took 541.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.15 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000015.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 534.03 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000015.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000015.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.15, dt = 0.00477600775606723 ----------------
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 (3.1%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 5.74 us (2.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.21 us (88.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (71.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.962625271515407e-07,-3.482161170603902e-05,-2.7880325707165852e-06)
sum a = (0.00016147764577075126,-0.0002992466653207046,-1.568450734696296e-05)
sum e = 0.05006645310361426
sum de = 0.0007119969065953729
Info: cfl dt = 0.005135257746052216 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5207e+05 | 100000 | 1 | 3.967e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.3404095595052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15477600775606723, dt = 0.005135257746052216 ----------------
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.93 us (4.5%)
patch tree reduce : 1.95 us (1.1%)
gen split merge : 981.00 ns (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.6%)
LB compute : 154.67 us (87.0%)
LB move op cnt : 0
LB apply : 4.33 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (60.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4604325829965218e-06,-3.635718302183451e-05,-2.868092337453297e-06)
sum a = (0.00017748855023776928,-0.00029786874906957857,-1.5460902571955195e-05)
sum e = 0.050071196942682146
sum de = 0.0007319718693946487
Info: cfl dt = 0.005016333112992506 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5840e+05 | 100000 | 1 | 3.870e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.77069949418954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15991126550211945, dt = 8.873449788054932e-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.27 us (4.3%)
patch tree reduce : 2.08 us (1.1%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.6%)
LB compute : 168.49 us (87.6%)
LB move op cnt : 0
LB apply : 4.45 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5172920009684198e-06,-3.638007627816537e-05,-2.8688901188033486e-06)
sum a = (0.00017776744869474063,-0.00029783695120925296,-1.5456988829719314e-05)
sum e = 0.05006367827043116
sum de = 0.000733531526631928
Info: cfl dt = 0.00501694985268197 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.7066e+05 | 100000 | 1 | 3.695e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8645922022947541 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 164.932203474 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
- took 3.64 ms, bandwidth = 1.54 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (56.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
- took 5.14 ms, bandwidth = 2.49 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000016.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000016.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000016.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 332.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 317.42 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000016.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020468167000000002 s
Info: compute_slice took 556.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000016.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009469204 s
Info: compute_slice took 542.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 547.25 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000016.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 549.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000016.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.17s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.16, dt = 0.00501694985268197 ----------------
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.14 us (3.7%)
patch tree reduce : 2.16 us (1.1%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.7%)
LB compute : 169.11 us (88.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (60.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4091547504748036e-06,-3.787430791587347e-05,-2.946436882993537e-06)
sum a = (0.00019364346584230523,-0.0002955810753124937,-1.5232950685922276e-05)
sum e = 0.05007465262607973
sum de = 0.0007515988894465156
Info: cfl dt = 0.004907313632701597 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.3950e+05 | 100000 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.2564858329284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16501694985268198, dt = 0.004907313632701597 ----------------
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.72 us (3.5%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.5%)
LB compute : 173.61 us (89.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 771.00 ns (58.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.399248561225684e-06,-3.93191581482048e-05,-3.020627755494573e-06)
sum a = (0.00020934333356121952,-0.0002924947014101045,-1.5008642194076997e-05)
sum e = 0.05007808621776377
sum de = 0.000769959794206262
Info: cfl dt = 0.004810065937145329 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5876e+05 | 100000 | 1 | 3.865e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71325240157715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1699242634853836, dt = 7.573651461642572e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (3.2%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 185.34 us (90.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (58.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4536255831204655e-06,-3.933373777506709e-05,-3.0212140816834892e-06)
sum a = (0.0002095866989682796,-0.0002924401871165818,-1.500514090618456e-05)
sum e = 0.05007119980754233
sum de = 0.0007713872541006462
Info: cfl dt = 0.00481133541808796 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.2468e+05 | 100000 | 1 | 4.451e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6126000837646278 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 39 [SPH][rank=0]
Info: time since start : 174.901542664 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000017.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000017.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.17 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000017.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 329.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 324.05 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000017.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.021255244000000003 s
Info: compute_slice took 554.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 539.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000017.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008574447 s
Info: compute_slice took 541.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000017.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 531.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 529.93 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000017.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000017.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.18s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.17, dt = 0.00481133541808796 ----------------
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.17 us (3.8%)
patch tree reduce : 2.00 us (1.1%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.6%)
LB compute : 164.85 us (88.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 701.00 ns (56.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.462026706839756e-06,-4.074076354065432e-05,-3.0934087149911513e-06)
sum a = (0.00022509729504564742,-0.00028853505868532627,-1.4780251740624419e-05)
sum e = 0.05008163631657422
sum de = 0.0007877223133348867
Info: cfl dt = 0.004719912218402781 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6291e+05 | 100000 | 1 | 3.804e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.538885517859704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17481133541808797, dt = 0.004719912218402781 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (3.9%)
patch tree reduce : 1.99 us (1.1%)
gen split merge : 1.11 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.7%)
LB compute : 156.48 us (87.9%)
LB move op cnt : 0
LB apply : 3.75 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (55.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.561779520202901e-06,-4.2093229248219195e-05,-3.162629197169091e-06)
sum a = (0.00024037779076102652,-0.00028385403472890426,-1.4554986285193226e-05)
sum e = 0.05008515463866576
sum de = 0.0008043427322295184
Info: cfl dt = 0.00517390524492942 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.3195e+05 | 100000 | 1 | 4.311e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.412530797411165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17953124763649075, dt = 0.00046875236350923943 ----------------
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 (3.9%)
patch tree reduce : 2.31 us (1.3%)
gen split merge : 1.09 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.6%)
LB compute : 154.13 us (87.7%)
LB move op cnt : 0
LB apply : 3.47 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 651.00 ns (55.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.710518476970111e-06,-4.221523948679779e-05,-3.168920264803376e-06)
sum a = (0.00024189706845827554,-0.0002833429287231089,-1.4532365957030495e-05)
sum e = 0.050079152057801946
sum de = 0.0008070784489291525
Info: cfl dt = 0.005142752087051737 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 | 2.6940e+05 | 100000 | 1 | 3.712e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.54610057093822 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 42 [SPH][rank=0]
Info: time since start : 184.768143933 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
- took 3.44 ms, bandwidth = 1.63 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (54.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
- took 5.01 ms, bandwidth = 2.56 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000018.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000018.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 329.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.48 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020709885 s
Info: compute_slice took 539.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.04 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.010031207 s
Info: compute_slice took 536.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.81 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000018.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.72 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000018.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000018.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.19s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.18, dt = 0.005142752087051737 ----------------
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 (3.4%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 189.60 us (89.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 691.00 ns (57.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.954891213137622e-06,-4.367228213377072e-05,-3.243651318492557e-06)
sum a = (0.0002585628721102551,-0.0002771730279859761,-1.4281238264514255e-05)
sum e = 0.050090944012096496
sum de = 0.0008230275407816313
Info: cfl dt = 0.005043200134491966 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6343e+05 | 100000 | 1 | 3.796e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.771522902035734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18514275208705172, dt = 0.0048572479129482815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (4.3%)
patch tree reduce : 1.78 us (1.0%)
gen split merge : 911.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.7%)
LB compute : 149.28 us (87.6%)
LB move op cnt : 0
LB apply : 3.90 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 702.00 ns (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.253649232322515e-06,-4.500271511053858e-05,-3.3123730895147863e-06)
sum a = (0.0002742603803891299,-0.0002703977413792968,-1.4039131784207765e-05)
sum e = 0.050094168446827105
sum de = 0.0008388952136858663
Info: cfl dt = 0.004847683813663348 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.3696e+05 | 100000 | 1 | 4.220e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.435615309255695 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 194.213406823 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000019.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000019.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000019.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 330.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000019.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020385374 s
Info: compute_slice took 641.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 548.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000019.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.010118427000000001 s
Info: compute_slice took 539.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 526.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000019.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 534.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.76 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000019.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.38 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000019.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.19, dt = 0.004847683813663348 ----------------
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 (4.1%)
patch tree reduce : 1.96 us (1.1%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.7%)
LB compute : 158.07 us (88.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (56.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.621300183709485e-06,-4.629706324130716e-05,-3.379842375824883e-06)
sum a = (0.00028983031001927797,-0.0002627076732348042,-1.3792768134201403e-05)
sum e = 0.05009825933761423
sum de = 0.0008538910708955315
Info: cfl dt = 0.004669157459238566 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6032e+05 | 100000 | 1 | 3.841e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.42964365287575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19484768381366335, dt = 0.004669157459238566 ----------------
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 (3.3%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 193.79 us (90.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 691.00 ns (60.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1012302585588639e-05,-4.750504722394144e-05,-3.4436458355030375e-06)
sum a = (0.0003046841780360286,-0.00025441853975140217,-1.3551029826320512e-05)
sum e = 0.05010179886425151
sum de = 0.000867778934088562
Info: cfl dt = 0.0045114320284078005 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6005e+05 | 100000 | 1 | 3.845e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.71097504981214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19951684127290192, dt = 0.0004831587270980875 ----------------
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 (4.3%)
patch tree reduce : 2.19 us (1.2%)
gen split merge : 1.10 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.6%)
LB compute : 154.44 us (87.7%)
LB move op cnt : 0
LB apply : 3.50 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 691.00 ns (60.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1194190929539873e-05,-4.760862012705243e-05,-3.4496287767130694e-06)
sum a = (0.000306211267410079,-0.0002535115524591937,-1.352576781854203e-05)
sum e = 0.05009594029760933
sum de = 0.0008703555122625404
Info: cfl dt = 0.004496297613966705 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4081e+05 | 100000 | 1 | 4.153e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.188650370695785 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 47 [SPH][rank=0]
Info: time since start : 204.22370524700003 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
- took 3.85 ms, bandwidth = 1.45 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (53.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
- took 4.94 ms, bandwidth = 2.59 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000020.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 307.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 308.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000020.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 325.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 308.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000020.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.022570936 s
Info: compute_slice took 542.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 524.43 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000020.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009926172 s
Info: compute_slice took 531.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 519.15 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000020.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 523.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 525.54 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.21s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.2, dt = 0.004496297613966705 ----------------
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 : 11.97 us (5.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.64 us (0.8%)
LB compute : 189.28 us (87.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2571376833834879e-05,-4.874826440607476e-05,-3.5104385515028873e-06)
sum a = (0.0003203139165377758,-0.00024462171279028674,-1.3288436738466835e-05)
sum e = 0.05010570787059534
sum de = 0.0008818602691166818
Info: cfl dt = 0.004357288421367541 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.3155e+05 | 100000 | 1 | 4.319e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.48016803468963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2044962976139667, dt = 0.004357288421367541 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (4.2%)
patch tree reduce : 2.02 us (1.2%)
gen split merge : 1.24 us (0.7%)
split / merge op : 0/0
apply split merge : 1.20 us (0.7%)
LB compute : 150.96 us (87.2%)
LB move op cnt : 0
LB apply : 3.50 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3998781807377982e-05,-4.979416608037403e-05,-3.5678065474569604e-06)
sum a = (0.00033376426547831426,-0.00023523823478522436,-1.3054604999891165e-05)
sum e = 0.05010922875603593
sum de = 0.0008934792408447896
Info: cfl dt = 0.004233190257589456 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6314e+05 | 100000 | 1 | 3.800e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.27598622294281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20885358603533424, dt = 0.001146413964665749 ----------------
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.83 us (3.5%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 174.10 us (89.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 671.00 ns (57.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4410717347076711e-05,-5.0043403217732e-05,-3.5822630927685053e-06)
sum a = (0.0003372625560541219,-0.0002326446474354601,-1.2992458612783854e-05)
sum e = 0.05010509468097933
sum de = 0.0008974493879301546
Info: cfl dt = 0.004202940046141594 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 | 2.6900e+05 | 100000 | 1 | 3.717e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.101814954510846 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 50 [SPH][rank=0]
Info: time since start : 213.990715201 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000021.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000021.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000021.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 329.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.79 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000021.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020137985 s
Info: compute_slice took 547.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 530.57 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000021.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008350956 s
Info: compute_slice took 537.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 529.76 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000021.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 529.96 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000021.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000021.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.21, dt = 0.004202940046141594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (3.2%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 216.05 us (90.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.583021689457721e-05,-5.101970806059004e-05,-3.636833994626988e-06)
sum a = (0.00034992382010641814,-0.0002226884810998129,-1.2762376163712335e-05)
sum e = 0.0501136725008774
sum de = 0.0009068971619041174
Info: cfl dt = 0.004093276672937826 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6189e+05 | 100000 | 1 | 3.818e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.62617176877816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2142029400461416, dt = 0.004093276672937826 ----------------
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.32 us (3.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 226.89 us (90.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (79.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7289159171583364e-05,-5.191031104049746e-05,-3.688590419899617e-06)
sum a = (0.00036198034741678905,-0.00021232331808994348,-1.2534921052971147e-05)
sum e = 0.0501171481797717
sum de = 0.0009164128455061189
Info: cfl dt = 0.003994674318308269 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6126e+05 | 100000 | 1 | 3.828e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.49846454308478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21829621671907942, dt = 0.0017037832809205788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.96 us (4.4%)
patch tree reduce : 1.81 us (1.0%)
gen split merge : 851.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.6%)
LB compute : 157.40 us (87.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 671.00 ns (48.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7930570586531666e-05,-5.225085022002557e-05,-3.7094816904678642e-06)
sum a = (0.0003669107357965159,-0.00020781664283601038,-1.2439266136636518e-05)
sum e = 0.05011465510411003
sum de = 0.0009210325225283879
Info: cfl dt = 0.003956650367431551 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6011e+05 | 100000 | 1 | 3.845e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.95411494031862 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 223.77794454800002 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.vtk [VTK Dump][rank=0]
- took 3.63 ms, bandwidth = 1.54 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (53.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham [Shamrock Dump][rank=0]
- took 3.80 ms, bandwidth = 3.37 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000022.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000022.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.03 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000022.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 326.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.07 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000022.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020111347 s
Info: compute_slice took 541.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 525.66 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000022.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.010029264000000001 s
Info: compute_slice took 539.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000022.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 531.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 542.34 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.23s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.22, dt = 0.003956650367431551 ----------------
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 : 12.15 us (4.9%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.13 us (89.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9386508240782444e-05,-5.3069268817295595e-05,-3.75861802977437e-06)
sum a = (0.0003781410376366275,-0.0001969153699153565,-1.2214892683112045e-05)
sum e = 0.05012206172095334
sum de = 0.000928587816178807
Info: cfl dt = 0.003869330593510471 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5087e+05 | 100000 | 1 | 3.986e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.73395635461975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22395665036743156, dt = 0.003869330593510471 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (3.6%)
patch tree reduce : 1.73 us (1.0%)
gen split merge : 1.01 us (0.6%)
split / merge op : 0/0
apply split merge : 1.56 us (0.9%)
LB compute : 154.59 us (88.4%)
LB move op cnt : 0
LB apply : 3.53 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 651.00 ns (59.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087187811531729e-05,-5.380963321968896e-05,-3.805437604075918e-06)
sum a = (0.000388802723561444,-0.0001856747395840352,-1.1992454784186435e-05)
sum e = 0.05012547756402879
sum de = 0.0009361293170785306
Info: cfl dt = 0.004212355106469758 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5776e+05 | 100000 | 1 | 3.880e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.90464631196441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22782598096094203, dt = 0.0021740190390579783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (3.0%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 210.43 us (90.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1737769432540064e-05,-5.419154678120621e-05,-3.8310790862180434e-06)
sum a = (0.00039464294331107135,-0.00017911160420230012,-1.1866169754416932e-05)
sum e = 0.05012450632993428
sum de = 0.0009407527240664417
Info: cfl dt = 0.00416769957024289 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4270e+05 | 100000 | 1 | 4.120e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.994828516366926 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 56 [SPH][rank=0]
Info: time since start : 233.602542997 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000023.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000023.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000023.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 329.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.84 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000023.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020741142 s
Info: compute_slice took 549.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.44 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000023.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009733766000000001 s
Info: compute_slice took 541.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000023.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 538.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000023.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000023.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.23, dt = 0.00416769957024289 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.9%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 231.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3388871032249712e-05,-5.493089594641033e-05,-3.880396443774433e-06)
sum a = (0.0004055124831486789,-0.00016603659389930934,-1.1621428815481534e-05)
sum e = 0.05013217139812865
sum de = 0.0009469520694622123
Info: cfl dt = 0.00464919369941951 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6156e+05 | 100000 | 1 | 3.823e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.244159759355874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2341676995702429, dt = 0.00464919369941951 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (3.4%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.7%)
LB compute : 188.51 us (89.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (52.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5296827602194383e-05,-5.5675585875233024e-05,-3.9339167140486e-06)
sum a = (0.0004170938405517575,-0.00015070389971651204,-1.134431188999517e-05)
sum e = 0.05013785580768592
sum de = 0.0009534738890650962
Info: cfl dt = 0.004577089617043286 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5911e+05 | 100000 | 1 | 3.859e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.36708359838694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2388168932696624, dt = 0.0011831067303375853 ----------------
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 (3.4%)
patch tree reduce : 1.57 us (0.8%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 180.93 us (89.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.581721611906987e-05,-5.581824234068391e-05,-3.946694060664712e-06)
sum a = (0.00041994407729814066,-0.00014667992829207847,-1.1273105687918265e-05)
sum e = 0.05013301456562146
sum de = 0.000956382335299111
Info: cfl dt = 0.0045450402411424265 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6239e+05 | 100000 | 1 | 3.811e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.175700772167916 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 59 [SPH][rank=0]
Info: time since start : 243.42202953900002 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.vtk [VTK Dump][rank=0]
- took 3.49 ms, bandwidth = 1.60 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (55.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham [Shamrock Dump][rank=0]
- took 4.40 ms, bandwidth = 2.91 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000024.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000024.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000024.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 328.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.90 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000024.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.02073314 s
Info: compute_slice took 575.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.60 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000024.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009589362 s
Info: compute_slice took 540.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.34 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000024.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 540.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 529.53 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000024.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000024.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.25s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.24, dt = 0.0045450402411424265 ----------------
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.53 us (3.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.44 us (90.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (75.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7727564916552618e-05,-5.648252812350373e-05,-3.997888657390485e-06)
sum a = (0.00043050243824673917,-0.00013076564597150914,-1.0996932201629118e-05)
sum e = 0.05014307535326661
sum de = 0.0009606764404632037
Info: cfl dt = 0.00441388685208918 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6295e+05 | 100000 | 1 | 3.803e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.023787760787194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24454504024114243, dt = 0.00441388685208918 ----------------
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 (3.6%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 185.38 us (89.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (54.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9651748056218384e-05,-5.7023547362189e-05,-4.0458002620442115e-06)
sum a = (0.00044013128259300636,-0.00011464215717188444,-1.07247493563154e-05)
sum e = 0.050146992318079946
sum de = 0.000965175590125063
Info: cfl dt = 0.004297504684344066 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6315e+05 | 100000 | 1 | 3.800e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.81513656832813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2489589270932316, dt = 0.0010410729067683866 ----------------
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.01 us (3.6%)
patch tree reduce : 1.92 us (1.1%)
gen split merge : 1.18 us (0.7%)
split / merge op : 0/0
apply split merge : 1.33 us (0.8%)
LB compute : 149.59 us (88.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0131207124685804e-05,-5.710731457837786e-05,-4.056364815889813e-06)
sum a = (0.00044230841377212646,-0.00011074673730171973,-1.0659980958012583e-05)
sum e = 0.05014254039861528
sum de = 0.0009672978704012977
Info: cfl dt = 0.004387064790422907 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6882e+05 | 100000 | 1 | 3.720e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.07512570683597 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 253.25994818900003 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000025.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000025.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000025.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 332.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 323.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000025.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.034681985000000005 s
Info: compute_slice took 570.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 534.66 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000025.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009680286 s
Info: compute_slice took 541.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 536.11 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000025.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000025.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000025.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.26s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.25, dt = 0.004387064790422907 ----------------
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 : 28.92 us (12.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.55 us (81.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 721.00 ns (60.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.207277606938733e-05,-5.7591139982193905e-05,-4.103097128704959e-06)
sum a = (0.0004510671026547631,-9.395088423685819e-05,-1.0384618278462816e-05)
sum e = 0.05015219089889981
sum de = 0.0009694117394654381
Info: cfl dt = 0.004240579186829486 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.4829e+05 | 100000 | 1 | 4.027e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.21416075182969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2543870647904229, dt = 0.004240579186829486 ----------------
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 (4.1%)
patch tree reduce : 1.87 us (1.1%)
gen split merge : 951.00 ns (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.6%)
LB compute : 151.09 us (87.6%)
LB move op cnt : 0
LB apply : 3.38 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 761.00 ns (59.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4004774304570746e-05,-5.795270389869008e-05,-4.146529907881741e-06)
sum a = (0.00045886974577706986,-7.715649869328504e-05,-1.0114719842064952e-05)
sum e = 0.05015594433844542
sum de = 0.0009717582293978408
Info: cfl dt = 0.004333057068551806 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.5733e+05 | 100000 | 1 | 3.886e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.28453667268944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25862764397725235, dt = 0.0013723560227476561 ----------------
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.45 us (3.8%)
patch tree reduce : 1.53 us (0.9%)
gen split merge : 1.03 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.7%)
LB compute : 151.16 us (87.9%)
LB move op cnt : 0
LB apply : 3.66 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.465105082686104e-05,-5.802298112345998e-05,-4.159838641729428e-06)
sum a = (0.00046124983067212814,-7.160917630336947e-05,-1.002658820513525e-05)
sum e = 0.05015248401284187
sum de = 0.0009733987852564437
Info: cfl dt = 0.004289261863250728 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6629e+05 | 100000 | 1 | 3.755e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.156037914400052 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 263.169901867 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.vtk [VTK Dump][rank=0]
- took 3.36 ms, bandwidth = 1.67 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (50.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham [Shamrock Dump][rank=0]
- took 5.36 ms, bandwidth = 2.39 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000026.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000026.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000026.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 328.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000026.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020112517 s
Info: compute_slice took 550.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000026.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008520556 s
Info: compute_slice took 538.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 531.56 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000026.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 535.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 534.37 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000026.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000026.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.27s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.26, dt = 0.004289261863250728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.9%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 210.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 771.00 ns (59.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.663110529690296e-05,-5.832632518178535e-05,-4.202784830144869e-06)
sum a = (0.0004682105759046637,-5.392837022873346e-05,-9.748619118051682e-06)
sum e = 0.05016159289658722
sum de = 0.0009734013613327901
Info: cfl dt = 0.004367638209032286 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 2.6510e+05 | 100000 | 1 | 3.772e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.935538195784865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26428926186325075, dt = 0.004367638209032286 ----------------
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 (3.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 183.31 us (89.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 661.00 ns (57.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.869100792763103e-05,-5.852394598855296e-05,-4.2447671303879915e-06)
sum a = (0.0004745295633231885,-3.542130034899766e-05,-9.461649122196353e-06)
sum e = 0.05016606150391677
sum de = 0.0009734465028110001
Info: cfl dt = 0.004326464601271437 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 | 2.6461e+05 | 100000 | 1 | 3.779e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.6053430051442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26865690007228304, dt = 0.001343099927716973 ----------------
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.06 us (3.0%)
patch tree reduce : 1.41 us (0.7%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 180.98 us (90.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 731.00 ns (59.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.934214807528723e-05,-5.8531104241717396e-05,-4.2568483800807114e-06)
sum a = (0.0004763121254304473,-2.9634548996316186e-05,-9.37260753422317e-06)
sum e = 0.05016220265260252
sum de = 0.0009744818507956299
Info: cfl dt = 0.004269512681353489 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 | 2.6096e+05 | 100000 | 1 | 3.832e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.617811964359714 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 272.985578063 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000027.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000027.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.21 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000027.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 342.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.02073357 s
Info: compute_slice took 570.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 552.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008939278 s
Info: compute_slice took 558.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 543.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000027.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.02 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000027.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000027.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.28s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.27, dt = 0.004269512681353489 ----------------
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 (3.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 198.37 us (90.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 731.00 ns (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.137696581460816e-05,-5.865374323179324e-05,-4.296805050930253e-06)
sum a = (0.00048145742858222144,-1.09542958671441e-05,-9.087033486861714e-06)
sum e = 0.0501712871008542
sum de = 0.00097224715102978
Info: cfl dt = 0.004180340324513916 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 | 2.6364e+05 | 100000 | 1 | 3.793e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.52253346898848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2742695126813535, dt = 0.004180340324513916 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (3.9%)
patch tree reduce : 2.06 us (1.2%)
gen split merge : 1.17 us (0.7%)
split / merge op : 0/0
apply split merge : 1.45 us (0.9%)
LB compute : 148.80 us (87.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 762.00 ns (60.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3400605686375205e-05,-5.8659658127733173e-05,-4.334182312437248e-06)
sum a = (0.0004857082037137058,7.724096638094043e-06,-8.80371094085359e-06)
sum e = 0.05017513445482924
sum de = 0.0009702219711411144
Info: cfl dt = 0.004320129518952065 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 | 2.6282e+05 | 100000 | 1 | 3.805e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.55251779915542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27844985300586744, dt = 0.001550146994132584 ----------------
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.47 us (3.1%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 185.91 us (90.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 691.00 ns (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4162409641736366e-05,-5.860864362385489e-05,-4.347237166157451e-06)
sum a = (0.00048708195383375384,1.4739799475529966e-05,-8.697718972393562e-06)
sum e = 0.05017211022798952
sum de = 0.0009702831337476709
Info: cfl dt = 0.004276257076175776 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 | 2.6655e+05 | 100000 | 1 | 3.752e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.874670379380538 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 282.85847744 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.vtk [VTK Dump][rank=0]
- took 3.40 ms, bandwidth = 1.65 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (53.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham [Shamrock Dump][rank=0]
- took 5.12 ms, bandwidth = 2.50 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000028.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.31 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000028.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 312.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 331.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 311.82 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000028.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020161481000000002 s
Info: compute_slice took 547.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 528.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000028.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008388061 s
Info: compute_slice took 537.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 532.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000028.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 533.18 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000028.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000028.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.29s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.28, dt = 0.004276257076175776 ----------------
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 (3.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 207.95 us (90.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 731.00 ns (60.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.624636205080399e-05,-5.8540174766718565e-05,-4.384348696894096e-06)
sum a = (0.0004902856541440324,3.4326717757504164e-05,-8.402679682138854e-06)
sum e = 0.05018103774216464
sum de = 0.0009657469319146596
Info: cfl dt = 0.004287605816626471 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 | 2.3769e+05 | 100000 | 1 | 4.207e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.591911893850096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2842762570761758, dt = 0.004287605816626471 ----------------
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.84 us (3.5%)
patch tree reduce : 1.93 us (1.0%)
gen split merge : 1.30 us (0.7%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 173.09 us (89.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (58.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8355363596376355e-05,-5.8351115983028273e-05,-4.419745243248136e-06)
sum a = (0.0004926179813498853,5.4272113945615386e-05,-8.102975158699878e-06)
sum e = 0.05018521236059996
sum de = 0.0009612261461412253
Info: cfl dt = 0.0043610875338876585 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 | 2.6514e+05 | 100000 | 1 | 3.772e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92544559161859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2885638628928023, dt = 0.0014361371071976992 ----------------
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.68 us (3.0%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 200.30 us (90.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (56.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.906783060891498e-05,-5.8230414787950186e-05,-4.430739719123261e-06)
sum a = (0.000493199048400804,6.101298845001521e-05,-8.001725956519554e-06)
sum e = 0.05018166637139935
sum de = 0.0009606519605794364
Info: cfl dt = 0.004317892195660595 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 | 2.6943e+05 | 100000 | 1 | 3.712e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.929601595715333 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 74 [SPH][rank=0]
Info: time since start : 292.690790832 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000029.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.32 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000029.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 314.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000029.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 330.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 313.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000029.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.02014994 s
Info: compute_slice took 566.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 557.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000029.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00874633 s
Info: compute_slice took 560.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 553.05 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000029.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 554.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 554.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000029.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.39 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000029.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.29, dt = 0.004317892195660595 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (3.1%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 205.48 us (90.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 692.00 ns (58.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.119782817689255e-05,-5.7962126871279824e-05,-4.465217605314556e-06)
sum a = (0.0004943253466268633,8.144226241350107e-05,-7.694662565529513e-06)
sum e = 0.050190820188903355
sum de = 0.0009536105242311398
Info: cfl dt = 0.004185840485295206 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 | 2.4858e+05 | 100000 | 1 | 4.023e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.6404032017691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29431789219566057, dt = 0.004185840485295206 ----------------
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.93 us (3.4%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 184.02 us (89.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 671.00 ns (55.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.3269426842864766e-05,-5.757711685075077e-05,-4.496763302092277e-06)
sum a = (0.0004945174680794587,0.00010144022703441729,-7.393227503128035e-06)
sum e = 0.05019447178219466
sum de = 0.0009469455689778937
Info: cfl dt = 0.004121367042013524 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 | 2.5547e+05 | 100000 | 1 | 3.914e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.497589460942905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29850373268095576, dt = 0.001496267319044231 ----------------
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 (3.9%)
patch tree reduce : 1.99 us (1.2%)
gen split merge : 811.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.7%)
LB compute : 145.43 us (87.7%)
LB move op cnt : 0
LB apply : 3.86 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 671.00 ns (56.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.4009759263937825e-05,-5.738348100923896e-05,-4.507194667243516e-06)
sum a = (0.0004943690449864941,0.00010862558426083703,-7.284584317866755e-06)
sum e = 0.050191254148521956
sum de = 0.0009453884940235496
Info: cfl dt = 0.004084222745590995 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 | 2.5661e+05 | 100000 | 1 | 3.897e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.822293223720369 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 77 [SPH][rank=0]
Info: time since start : 302.729899249 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.vtk [VTK Dump][rank=0]
- took 3.36 ms, bandwidth = 1.67 GB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (53.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.sham [Shamrock Dump][rank=0]
- took 4.97 ms, bandwidth = 2.58 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000030.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.38 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000030.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 317.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000030.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 327.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 307.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_0000030.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.020815772 s
Info: compute_slice took 540.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 523.79 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000030.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.008808204 s
Info: compute_slice took 529.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 519.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000030.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 522.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 520.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000030.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1.33 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000030.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Plot generation#
Load the on-the-fly analysis after the run to make the plots (everything in this section can be in another file)
532 import matplotlib
533 import matplotlib.pyplot as plt
534
535 face_on_render_kwargs = {
536 "x_unit": "au",
537 "y_unit": "au",
538 "time_unit": "year",
539 "x_label": "x",
540 "y_label": "y",
541 }
542
543 column_density_plot.render_all(
544 **face_on_render_kwargs,
545 field_unit="kg.m^-2",
546 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
547 vmin=1,
548 vmax=1e4,
549 norm="log",
550 )
551
552 column_density_plot_hollywood.render_all(
553 **face_on_render_kwargs,
554 field_unit="kg.m^-2",
555 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
556 vmin=1,
557 vmax=1e4,
558 norm="log",
559 holywood_mode=True,
560 )
561
562 vertical_density_plot.render_all(
563 **face_on_render_kwargs,
564 field_unit="kg.m^-3",
565 field_label="$\\rho$",
566 vmin=1e-10,
567 vmax=1e-6,
568 norm="log",
569 )
570
571 v_z_slice_plot.render_all(
572 **face_on_render_kwargs,
573 field_unit="m.s^-1",
574 field_label="$\\mathrm{v}_z$",
575 cmap="seismic",
576 cmap_bad_color="white",
577 vmin=-300,
578 vmax=300,
579 )
580
581 relative_azy_velocity_slice_plot.render_all(
582 **face_on_render_kwargs,
583 field_unit="m.s^-1",
584 field_label="$\\mathrm{v}_{\\theta} - v_k$",
585 cmap="seismic",
586 cmap_bad_color="white",
587 vmin=-300,
588 vmax=300,
589 )
590
591 vertical_shear_gradient_slice_plot.render_all(
592 **face_on_render_kwargs,
593 field_unit="yr^-1",
594 field_label="${{\\partial R \\Omega}}/{{\\partial z}}$",
595 cmap="seismic",
596 cmap_bad_color="white",
597 vmin=-1,
598 vmax=1,
599 )
600
601 dt_part_slice_plot.render_all(
602 **face_on_render_kwargs,
603 field_unit="year",
604 field_label="$\\Delta t$",
605 vmin=1e-4,
606 vmax=1,
607 norm="log",
608 contour_list=[1e-4, 1e-3, 1e-2, 1e-1, 1],
609 )
610
611 column_particle_count_plot.render_all(
612 **face_on_render_kwargs,
613 field_unit=None,
614 field_label="$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
615 vmin=1,
616 vmax=1e2,
617 norm="log",
618 contour_list=[1, 10, 100, 1000],
619 )
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000030.png
Make gif for the doc (plot_to_gif.py)#
Convert PNG sequence to Image sequence in mpl
628 render_gif = True
Do it for rho integ
633 if render_gif:
634 ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
635 if ani is not None:
636 plt.show()
Same but in hollywood
641 if render_gif:
642 ani = column_density_plot_hollywood.render_gif(
643 gif_filename="rho_integ_hollywood.gif", save_animation=True
644 )
645 if ani is not None:
646 plt.show()
For the vertical density plot
650 if render_gif and shamrock.sys.world_rank() == 0:
651 ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
652 if ani is not None:
653 plt.show()
Make a gif from the plots
658 if render_gif and shamrock.sys.world_rank() == 0:
659 ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
660 if ani is not None:
661 plt.show()
Make a gif from the plots
666 if render_gif and shamrock.sys.world_rank() == 0:
667 ani = relative_azy_velocity_slice_plot.render_gif(
668 gif_filename="relative_azy_velocity_slice.gif", save_animation=True
669 )
670 if ani is not None:
671 plt.show()
Make a gif from the plots
675 if render_gif and shamrock.sys.world_rank() == 0:
676 ani = vertical_shear_gradient_slice_plot.render_gif(
677 gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
678 )
679 if ani is not None:
680 plt.show()
Make a gif from the plots
684 if render_gif and shamrock.sys.world_rank() == 0:
685 ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
686 if ani is not None:
687 plt.show()
Make a gif from the plots
691 if render_gif and shamrock.sys.world_rank() == 0:
692 ani = column_particle_count_plot.render_gif(
693 gif_filename="particle_count.gif", save_animation=True
694 )
695 if ani is not None:
696 plt.show()
helper function to load data from JSON files
701 def load_data_from_json(filename, key):
702 filepath = os.path.join(analysis_folder, filename)
703 with open(filepath, "r") as fp:
704 data = json.load(fp)[key]
705 t = [d["t"] for d in data]
706 values = [d[key] for d in data]
707 return t, values
load the json file for barycenter
712 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
713 barycenter_x = [d[0] for d in barycenter]
714 barycenter_y = [d[1] for d in barycenter]
715 barycenter_z = [d[2] for d in barycenter]
716
717 plt.figure(figsize=(8, 5), dpi=200)
718
719 plt.plot(t, barycenter_x)
720 plt.plot(t, barycenter_y)
721 plt.plot(t, barycenter_z)
722 plt.xlabel("t")
723 plt.ylabel("barycenter")
724 plt.legend(["x", "y", "z"])
725 plt.savefig(analysis_folder + "barycenter.png")
726 plt.show()

load the json file for disc_mass
730 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
731
732 plt.figure(figsize=(8, 5), dpi=200)
733
734 plt.plot(t, disc_mass)
735 plt.xlabel("t")
736 plt.ylabel("disc_mass")
737 plt.savefig(analysis_folder + "disc_mass.png")
738 plt.show()

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

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

Plot the performance history (Switch close_plots to True if doing a long run)
777 perf_analysis.plot_perf_history(close_plots=False)
778 plt.show()
Plotting perf history from _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Total running time of the script: (8 minutes 41.904 seconds)
Estimated memory usage: 2330 MB







