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 )
Setup units
61 si = shamrock.UnitSystem()
62 sicte = shamrock.Constants(si)
63 codeu = shamrock.UnitSystem(
64 unit_time=sicte.year(),
65 unit_length=sicte.au(),
66 unit_mass=sicte.sol_mass(),
67 )
68 ucte = shamrock.Constants(codeu)
69 G = ucte.G()
List parameters
74 # Resolution
75 Npart = 100000
76
77 # Domain decomposition parameters
78 scheduler_split_val = int(1.0e7) # split patches with more than 1e7 particles
79 scheduler_merge_val = scheduler_split_val // 16
80
81 # Dump and plot frequency and duration of the simulation
82 dump_freq_stop = 2
83 plot_freq_stop = 1
84
85 dt_stop = 0.01
86 nstop = 30
87
88 # The list of times at which the simulation will pause for analysis / dumping
89 t_stop = [i * dt_stop for i in range(nstop + 1)]
90
91
92 # Sink parameters
93 center_mass = 1.0
94 center_racc = 0.1
95
96 # Disc parameter
97 disc_mass = 0.01 # sol mass
98 rout = 10.0 # au
99 rin = 1.0 # au
100 H_r_0 = 0.05
101 q = 0.5
102 p = 3.0 / 2.0
103 r0 = 1.0
104
105 # Viscosity parameter
106 alpha_AV = 1.0e-3 / 0.08
107 alpha_u = 1.0
108 beta_AV = 2.0
109
110 # Integrator parameters
111 C_cour = 0.3
112 C_force = 0.25
113
114 sim_folder = f"_to_trash/circular_disc_central_pot_{Npart}/"
115
116 dump_folder = sim_folder + "dump/"
117 analysis_folder = sim_folder + "analysis/"
118 plot_folder = analysis_folder + "plots/"
119
120 dump_prefix = dump_folder + "dump_"
121
122
123 # Disc profiles
124 def sigma_profile(r):
125 sigma_0 = 1.0 # We do not care as it will be renormalized
126 return sigma_0 * (r / r0) ** (-p)
127
128
129 def kep_profile(r):
130 return (G * center_mass / r) ** 0.5
131
132
133 def omega_k(r):
134 return kep_profile(r) / r
135
136
137 def cs_profile(r):
138 cs_in = (H_r_0 * r0) * omega_k(r0)
139 return ((r / r0) ** (-q)) * cs_in
Create the dump directory if it does not exist
144 if shamrock.sys.world_rank() == 0:
145 os.makedirs(sim_folder, exist_ok=True)
146 os.makedirs(dump_folder, exist_ok=True)
147 os.makedirs(analysis_folder, exist_ok=True)
148 os.makedirs(plot_folder, exist_ok=True)
Utility functions and quantities deduced from the base one
153 # Deduced quantities
154 pmass = disc_mass / Npart
155
156 bsize = rout * 2
157 bmin = (-bsize, -bsize, -bsize)
158 bmax = (bsize, bsize, bsize)
159
160 cs0 = cs_profile(r0)
161
162
163 def rot_profile(r):
164 return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
165
166
167 def H_profile(r):
168 H = cs_profile(r) / omega_k(r)
169 # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
170 fact = 1.0
171 return fact * H
Start the context The context holds the data of the code We then init the layout of the field (e.g. the list of fields used by the solver)
179 ctx = shamrock.Context()
180 ctx.pdata_layout_new()
Attach a SPH model to the context
185 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
Dump handling
192 def get_vtk_dump_name(idump):
193 return dump_prefix + f"{idump:07}" + ".vtk"
194
195
196 def get_ph_dump_name(idump):
197 return dump_prefix + f"{idump:07}" + ".phdump"
198
199
200 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)
Load the last dump if it exists, setup otherwise
206 def setup_model():
207 global disc_mass
208
209 # Generate the default config
210 cfg = model.gen_default_config()
211 cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
212 cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
213
214 cfg.add_ext_force_point_mass(center_mass, center_racc)
215 cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize) # kill particles outside the simulation box
216
217 cfg.set_units(codeu)
218 cfg.set_particle_mass(pmass)
219 # Set the CFL
220 cfg.set_cfl_cour(C_cour)
221 cfg.set_cfl_force(C_force)
222
223 # Enable this to debug the neighbor counts
224 # cfg.set_show_neigh_stats(True)
225
226 # Standard way to set the smoothing length (e.g. Price et al. 2018)
227 cfg.set_smoothing_length_density_based()
228
229 # Standard density based smoothing length but with a neighbor count limit
230 # Use it if you have large slowdowns due to giant particles
231 # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
232 # cfg.set_smoothing_length_density_based_neigh_lim(500)
233
234 cfg.set_save_dt_to_fields(True)
235
236 # Set the solver config to be the one stored in cfg
237 model.set_solver_config(cfg)
238
239 # Print the solver config
240 model.get_current_config().print_status()
241
242 # Init the scheduler & fields
243 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
244
245 # Set the simulation box size
246 model.resize_simulation_box(bmin, bmax)
247
248 # Create the setup
249
250 setup = model.get_setup()
251 gen_disc = setup.make_generator_disc_mc(
252 part_mass=pmass,
253 disc_mass=disc_mass,
254 r_in=rin,
255 r_out=rout,
256 sigma_profile=sigma_profile,
257 H_profile=H_profile,
258 rot_profile=rot_profile,
259 cs_profile=cs_profile,
260 random_seed=666,
261 )
262
263 # Print the dot graph of the setup
264 print(gen_disc.get_dot())
265
266 # Apply the setup
267 setup.apply_setup(gen_disc)
268
269 # correct the momentum and barycenter of the disc to 0
270 analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
271 total_momentum = analysis_momentum.get_total_momentum()
272
273 if shamrock.sys.world_rank() == 0:
274 print(f"disc momentum = {total_momentum}")
275
276 model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
277
278 # Correct the barycenter
279 analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
280 barycenter, disc_mass = analysis_barycenter.get_barycenter()
281
282 if shamrock.sys.world_rank() == 0:
283 print(f"disc barycenter = {barycenter}")
284
285 model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
286
287 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
288
289 if shamrock.sys.world_rank() == 0:
290 print(f"disc momentum after correction = {total_momentum}")
291
292 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
293
294 if shamrock.sys.world_rank() == 0:
295 print(f"disc barycenter after correction = {barycenter}")
296
297 if not np.allclose(total_momentum, 0.0):
298 raise RuntimeError("disc momentum is not 0")
299 if not np.allclose(barycenter, 0.0):
300 raise RuntimeError("disc barycenter is not 0")
301
302 # Run a single step to init the integrator and smoothing length of the particles
303 # Here the htolerance is the maximum factor of evolution of the smoothing length in each
304 # Smoothing length iterations, increasing it affects the performance negatively but increases the
305 # convergence rate of the smoothing length
306 # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
307 # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
308 # more slowly at the first timestep
309
310 model.change_htolerances(coarse=1.3, fine=1.1)
311 model.timestep()
312 model.change_htolerances(coarse=1.1, fine=1.1)
313
314
315 dump_helper.load_last_dump_or(setup_model)
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"alpha_AV": 0.0125,
"alpha_u": 1.0,
"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,
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs0": 0.31415811727277826,
"eos_type": "locally_isothermal_lp07",
"q": 0.5,
"r0": 1.0
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": [
{
"Racc": 0.1,
"central_mass": 1.0,
"force_type": "point_mass"
}
]
},
"gpart_mass": 1e-07,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M4<f64>",
"mhd_config": {
"mhd_type": "none"
},
"particle_killing": [
{
"center": [
0.0,
0.0,
0.0
],
"radius": 20.0,
"type": "sphere"
}
],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": true,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"time_state": {
"cfl_multiplier": 0.01,
"dt_sph": 0.0,
"time": 0.0
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": {
"unit_current": 1.0,
"unit_length": 149597870700.0,
"unit_lumint": 1.0,
"unit_mass": 1.98847e+30,
"unit_qte": 1.0,
"unit_temperature": 1.0,
"unit_time": 31557600.0
},
"use_two_stage_search": true
}
]
------------------------------------
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}
SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 rank min = 2.6e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.386734234 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 : 26.99 us (84.4%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1062.00 ns (0.1%)
patch tree reduce : 1983.00 ns (0.2%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.1%)
LB compute : 797.14 us (98.4%)
LB move op cnt : 0
LB apply : 4.60 us (0.6%)
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.016269828 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.3% 0.0% | 2.00 GB | 2.00 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.43133537200000005 s
disc momentum = (-5.810951242480584e-05, 2.0681541048100417e-06, 0.0)
disc barycenter = (-0.015207723587746209, 0.015657581335006374, -0.00025450167927213325)
disc momentum after correction = (-1.7503935855010117e-18, -5.637004263977369e-18, 0.0)
disc barycenter after correction = (-1.786900705527672e-15, 6.979551485375435e-16, -6.060520737604519e-17)
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.92 us (2.1%)
patch tree reduce : 1762.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 349.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1812.00 ns (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.37741680646819326 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.49064184840865127 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.6378344029312467 unconverged cnt = 99997
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.8291847238106208 unconverged cnt = 99992
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 99984
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 99961
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 99871
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 99438
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 92881
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 46416
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757873 unconverged cnt = 1511
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.9422982425757874 unconverged cnt = 6
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.738698736327933e-18,2.62545540863357e-18,0)
sum a = (-5.410646072394388e-05,-0.00011583745354600483,-1.92289809258193e-05)
sum e = 0.05000297062453884
sum de = 1.0112079034923636e-05
Info: CFL hydro = 7.833195568092581e-05 sink sink = inf [SPH][rank=0]
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 | 2.6606e+04 | 100000 | 1 | 3.759e+00 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
On the fly analysis
320 def save_rho_integ(ext, arr_rho, iplot):
321 if shamrock.sys.world_rank() == 0:
322 metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
323 np.save(plot_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
324
325 with open(plot_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
326 json.dump(metadata, fp)
327
328
329 def save_analysis_data(filename, key, value, ianalysis):
330 """Helper to save analysis data to a JSON file."""
331 if shamrock.sys.world_rank() == 0:
332 filepath = os.path.join(analysis_folder, filename)
333 try:
334 with open(filepath, "r") as fp:
335 data = json.load(fp)
336 except (FileNotFoundError, json.JSONDecodeError):
337 data = {key: []}
338 data[key] = data[key][:ianalysis]
339 data[key].append({"t": model.get_time(), key: value})
340 with open(filepath, "w") as fp:
341 json.dump(data, fp, indent=4)
342
343
344 from shamrock.utils.analysis import (
345 ColumnDensityPlot,
346 ColumnParticleCount,
347 PerfHistory,
348 SliceDensityPlot,
349 SliceDiffVthetaProfile,
350 SliceDtPart,
351 SliceVzPlot,
352 VerticalShearGradient,
353 )
354
355 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
356
357 column_density_plot = ColumnDensityPlot(
358 model,
359 ext_r=rout * 1.5,
360 nx=1024,
361 ny=1024,
362 ex=(1, 0, 0),
363 ey=(0, 1, 0),
364 center=(0, 0, 0),
365 analysis_folder=analysis_folder,
366 analysis_prefix="rho_integ_normal",
367 )
368
369 column_density_plot_hollywood = ColumnDensityPlot(
370 model,
371 ext_r=rout * 1.5,
372 nx=1024,
373 ny=1024,
374 ex=(1, 0, 0),
375 ey=(0, 1, 0),
376 center=(0, 0, 0),
377 analysis_folder=analysis_folder,
378 analysis_prefix="rho_integ_hollywood",
379 )
380
381 vertical_density_plot = SliceDensityPlot(
382 model,
383 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
384 nx=1920,
385 ny=1080,
386 ex=(1, 0, 0),
387 ey=(0, 0, 1),
388 center=(0, 0, 0),
389 analysis_folder=analysis_folder,
390 analysis_prefix="rho_slice",
391 )
392
393 v_z_slice_plot = SliceVzPlot(
394 model,
395 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
396 nx=1920,
397 ny=1080,
398 ex=(1, 0, 0),
399 ey=(0, 0, 1),
400 center=(0, 0, 0),
401 analysis_folder=analysis_folder,
402 analysis_prefix="v_z_slice",
403 do_normalization=True,
404 )
405
406 relative_azy_velocity_slice_plot = SliceDiffVthetaProfile(
407 model,
408 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
409 nx=1920,
410 ny=1080,
411 ex=(1, 0, 0),
412 ey=(0, 0, 1),
413 center=((rin + rout) / 2, 0, 0),
414 analysis_folder=analysis_folder,
415 analysis_prefix="relative_azy_velocity_slice",
416 velocity_profile=kep_profile,
417 do_normalization=True,
418 min_normalization=1e-9,
419 )
420
421 vertical_shear_gradient_slice_plot = VerticalShearGradient(
422 model,
423 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
424 nx=1920,
425 ny=1080,
426 ex=(1, 0, 0),
427 ey=(0, 0, 1),
428 center=((rin + rout) / 2, 0, 0),
429 analysis_folder=analysis_folder,
430 analysis_prefix="vertical_shear_gradient_slice",
431 do_normalization=True,
432 min_normalization=1e-9,
433 )
434
435 dt_part_slice_plot = SliceDtPart(
436 model,
437 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
438 nx=1920,
439 ny=1080,
440 ex=(1, 0, 0),
441 ey=(0, 0, 1),
442 center=((rin + rout) / 2, 0, 0),
443 analysis_folder=analysis_folder,
444 analysis_prefix="dt_part_slice",
445 )
446
447 column_particle_count_plot = ColumnParticleCount(
448 model,
449 ext_r=rout * 1.5,
450 nx=1024,
451 ny=1024,
452 ex=(1, 0, 0),
453 ey=(0, 1, 0),
454 center=(0, 0, 0),
455 analysis_folder=analysis_folder,
456 analysis_prefix="particle_count",
457 )
458
459
460 def analysis(ianalysis):
461 column_density_plot.analysis_save(ianalysis)
462 column_density_plot_hollywood.analysis_save(ianalysis)
463 vertical_density_plot.analysis_save(ianalysis)
464 v_z_slice_plot.analysis_save(ianalysis)
465 relative_azy_velocity_slice_plot.analysis_save(ianalysis)
466 vertical_shear_gradient_slice_plot.analysis_save(ianalysis)
467 dt_part_slice_plot.analysis_save(ianalysis)
468 column_particle_count_plot.analysis_save(ianalysis)
469
470 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
471
472 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
473
474 potential_energy = shamrock.model_sph.analysisEnergyPotential(
475 model=model
476 ).get_potential_energy()
477
478 kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
479
480 save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
481 save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
482 save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
483 save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
484 save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
485
486 perf_analysis.analysis_save(ianalysis)
Evolve the simulation
491 model.solver_logs_reset_cumulated_step_time()
492 model.solver_logs_reset_step_count()
493
494 t_start = model.get_time()
495
496 idump = 0
497 iplot = 0
498 istop = 0
499 for ttarg in t_stop:
500 if ttarg >= t_start:
501 model.evolve_until(ttarg)
502
503 if istop % dump_freq_stop == 0:
504 model.do_vtk_dump(get_vtk_dump_name(idump), True)
505 dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
506
507 # dump = model.make_phantom_dump()
508 # dump.save_dump(get_ph_dump_name(idump))
509
510 if istop % plot_freq_stop == 0:
511 analysis(iplot)
512
513 if istop % dump_freq_stop == 0:
514 idump += 1
515
516 if istop % plot_freq_stop == 0:
517 iplot += 1
518
519 istop += 1
Info: iteration since start : 1 [SPH][rank=0]
Info: time since start : 14.059069982 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
- took 28.16 ms, bandwidth = 189.68 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 : 7.14 us (35.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
- took 9.55 ms, bandwidth = 1.25 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 2.10 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 781.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 773.85 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 759.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 778.33 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.057048442000000005 s
Info: compute_slice took 1360.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1327.84 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.019496294 s
Info: compute_slice took 1327.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1363.41 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 1292.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1330.17 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 2.11 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
---------------- 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 : 8.04 us (1.5%)
patch tree reduce : 2.04 us (0.4%)
gen split merge : 1252.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 517.70 us (95.6%)
LB move op cnt : 0
LB apply : 4.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.238264892128996e-09,-9.073774276320279e-09,-1.5062436816706451e-09)
sum a = (-5.4145492738372827e-05,-0.0001159291631415064,-1.9228942062385582e-05)
sum e = 0.05000297317141568
sum de = 1.0476986723216888e-05
Info: CFL hydro = 0.002663297962155027 sink sink = inf [SPH][rank=0]
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 | 1.4484e+05 | 100000 | 1 | 6.904e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4084440183725477 (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.84 us (2.1%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.3%)
LB compute : 358.34 us (93.7%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4844537408060885e-07,-3.1783127013743875e-07,-5.271864436869506e-08)
sum a = (-5.5402858999968543e-05,-0.00011910758691039168,-1.922651454637513e-05)
sum e = 0.05000502786345026
sum de = 2.280842006808155e-05
Info: CFL hydro = 0.004305100970696 sink sink = inf [SPH][rank=0]
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 | 1.5207e+05 | 100000 | 1 | 6.576e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.579905707933857 (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.26 us (2.3%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1212.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 289.08 us (92.4%)
LB move op cnt : 0
LB apply : 4.85 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8863464664894775e-07,-8.348340029228886e-07,-1.3548749820617333e-07)
sum a = (-5.7140734788286374e-05,-0.00012448434310155854,-1.921804617905957e-05)
sum e = 0.05000841341637159
sum de = 4.2574908371730377e-05
Info: CFL hydro = 0.005275348061182332 sink sink = inf [SPH][rank=0]
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 | 1.5371e+05 | 100000 | 1 | 6.506e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.82216229855511 (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 : 7.63 us (1.7%)
patch tree reduce : 2.24 us (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.3%)
LB compute : 418.50 us (94.6%)
LB move op cnt : 0
LB apply : 4.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (72.5%)
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.9222533178138146e-07)
sum a = (-5.811499785339528e-05,-0.00012833503819476385,-1.9208988486298755e-05)
sum e = 0.05000577627928519
sum de = 5.650458874574528e-05
Info: CFL hydro = 0.005902529477645277 sink sink = inf [SPH][rank=0]
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 | 1.5352e+05 | 100000 | 1 | 6.514e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32204746153155 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 5 [SPH][rank=0]
Info: time since start : 34.674613616 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 2.10 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 779.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 778.46 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 759.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 781.80 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.04675377 s
Info: compute_slice took 1384.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1328.94 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.019343006000000003 s
Info: compute_slice took 1340.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1335.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000001.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1330.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1318.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000001.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000001.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.01, dt = 0.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 : 8.45 us (2.2%)
patch tree reduce : 2.73 us (0.7%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 363.31 us (93.4%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (71.5%)
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.055935776553827e-07)
sum a = (-5.95020001038888e-05,-0.00013639219506723238,-1.9182968771839784e-05)
sum e = 0.050013595461709574
sum de = 8.321964369365479e-05
Info: CFL hydro = 0.006896793722792809 sink sink = inf [SPH][rank=0]
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 | 1.4991e+05 | 100000 | 1 | 6.670e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.855368575249745 (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 : 35.62 us (9.0%)
patch tree reduce : 2.58 us (0.7%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 344.65 us (86.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1793.00 ns (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1534926997900142e-06,-2.559872724553431e-06,-3.8411843566345016e-07)
sum a = (-6.00100293235098e-05,-0.00014224577405401532,-1.9158696698066993e-05)
sum e = 0.050008858235198995
sum de = 0.00010278015100561222
Info: CFL hydro = 0.007165314836586345 sink sink = inf [SPH][rank=0]
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 | 1.4984e+05 | 100000 | 1 | 6.674e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.102592480250475 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 7 [SPH][rank=0]
Info: time since start : 53.949888637 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
- took 5.33 ms, bandwidth = 1002.11 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (56.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
- took 6.34 ms, bandwidth = 1.88 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000002.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 780.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 779.79 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 758.57 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 781.62 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.04414445 s
Info: compute_slice took 1374.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1342.69 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.026274212 s
Info: compute_slice took 1360.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1345.27 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 1336.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1340.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.02, dt = 0.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 : 8.45 us (1.5%)
patch tree reduce : 2.31 us (0.4%)
gen split merge : 1021.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 530.15 us (95.5%)
LB move op cnt : 0
LB apply : 4.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5845242706105246e-06,-3.591100913500095e-06,-5.213468023103671e-07)
sum a = (-5.9952794960874667e-05,-0.00015292006101694634,-1.910403880549158e-05)
sum e = 0.0500195077223299
sum de = 0.000134798155641907
Info: CFL hydro = 0.007254296311274258 sink sink = inf [SPH][rank=0]
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 | 1.4394e+05 | 100000 | 1 | 6.947e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.13029837651376 (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.23 us (2.0%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 338.28 us (93.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7542665178844606e-06,-4.062823455028174e-06,-5.753049171692694e-07)
sum a = (-5.9589295809454603e-05,-0.00015727925716863632,-1.9078129682329876e-05)
sum e = 0.05000763582715896
sum de = 0.00014929818035856868
Info: CFL hydro = 0.00737105938371397 sink sink = inf [SPH][rank=0]
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 | 1.5154e+05 | 100000 | 1 | 6.599e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.464604314254805 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 9 [SPH][rank=0]
Info: time since start : 73.347681221 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000003.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 781.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 783.12 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 760.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 782.78 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.043709164 s
Info: compute_slice took 1357.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1348.12 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.019707544 s
Info: compute_slice took 1370.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1344.50 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 1359.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1329.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.03, dt = 0.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.38 us (2.1%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 373.69 us (93.8%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1772.00 ns (69.1%)
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.158942218844062e-07)
sum a = (-5.769657725787134e-05,-0.00016889604749535748,-1.8999416387305487e-05)
sum e = 0.05002198259379801
sum de = 0.0001820158217987372
Info: CFL hydro = 0.007487629996111174 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007487629996111174 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4321e+05 | 100000 | 1 | 6.983e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.002657749143 (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 : 7.91 us (2.2%)
patch tree reduce : 2.63 us (0.7%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 329.24 us (93.1%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1572.00 ns (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3376927580584007e-06,-5.715148378631466e-06,-7.655524591247688e-07)
sum a = (-5.6686045642475265e-05,-0.00017312281449643986,-1.8967389611712355e-05)
sum e = 0.05000904083141202
sum de = 0.00019580957568369542
Info: CFL hydro = 0.007424416986969308 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007424416986969308 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5329e+05 | 100000 | 1 | 6.524e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50722948993063 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 11 [SPH][rank=0]
Info: time since start : 92.72813916700001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
- took 5.33 ms, bandwidth = 1002.11 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.31 us (58.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
- took 6.42 ms, bandwidth = 1.86 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000004.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 779.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 764.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 759.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 779.31 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.0449424 s
Info: compute_slice took 1385.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1330.94 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.01958564 s
Info: compute_slice took 1356.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1332.34 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 1336.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1328.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.04, dt = 0.007424416986969308 ----------------
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.71 us (2.1%)
patch tree reduce : 2.19 us (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 384.90 us (93.8%)
LB move op cnt : 0
LB apply : 4.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.757225284439061e-06,-7.006040303133659e-06,-9.063321705108458e-07)
sum a = (-5.2844908819096244e-05,-0.00018521181544718147,-1.886576215938032e-05)
sum e = 0.050024284727416324
sum de = 0.00022870386023128223
Info: CFL hydro = 0.007027005849700677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007027005849700677 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.3237e+05 | 100000 | 1 | 7.555e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.379872357067406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04742441698696931, dt = 0.002575583013030694 ----------------
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 (1.7%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 396.91 us (94.3%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.879072633184385e-06,-7.527945600824017e-06,-9.545452447647093e-07)
sum a = (-5.1169714427134454e-05,-0.00018944328295413516,-1.882666573214109e-05)
sum e = 0.05001115121368645
sum de = 0.00024239743776736122
Info: CFL hydro = 0.0069331249406501564 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0069331249406501564 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5183e+05 | 100000 | 1 | 6.586e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.077758683695885 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 13 [SPH][rank=0]
Info: time since start : 112.14605392600001 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000005.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 780.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 780.31 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 761.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 781.37 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.043329743000000004 s
Info: compute_slice took 1392.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1337.21 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.02062796 s
Info: compute_slice took 1376.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1350.58 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 1366.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1362.68 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.05, dt = 0.0069331249406501564 ----------------
Info: Summary (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.68 us (2.2%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 364.92 us (93.7%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2316813553842664e-06,-8.846828798615944e-06,-1.085022522454566e-06)
sum a = (-4.576095096137063e-05,-0.00020085432459949402,-1.8711641823805553e-05)
sum e = 0.05002468719273895
sum de = 0.0002733550302679452
Info: CFL hydro = 0.006612302262868752 sink sink = inf [SPH][rank=0]
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 | 1.5168e+05 | 100000 | 1 | 6.593e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.858906354557035 (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 : 7.61 us (2.2%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 330.63 us (93.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1692.00 ns (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3532746581303888e-06,-9.502381006011735e-06,-1.1420100525196529e-06)
sum a = (-4.294954990759223e-05,-0.00020589272112603993,-1.865624019062817e-05)
sum e = 0.05001459335973287
sum de = 0.0002891193408272673
Info: CFL hydro = 0.006505741296717669 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006505741296717669 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5154e+05 | 100000 | 1 | 6.599e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.73118603100819 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 15 [SPH][rank=0]
Info: time since start : 131.588628126 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
- took 5.12 ms, bandwidth = 1.02 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.10 us (55.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
- took 5.56 ms, bandwidth = 2.15 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 772.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 764.74 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 753.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 774.64 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.042955555 s
Info: compute_slice took 1381.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1343.84 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.019788734000000002 s
Info: compute_slice took 1352.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1343.88 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 1336.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1343.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000006.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000006.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.06, dt = 0.006505741296717669 ----------------
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.18 us (2.3%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 324.07 us (93.0%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.628382210753996e-06,-1.0849591850858823e-05,-1.2632977698257897e-06)
sum a = (-3.6123280955413644e-05,-0.00021649140053687978,-1.8529600578430607e-05)
sum e = 0.05002590665515338
sum de = 0.0003183609292446871
Info: CFL hydro = 0.0062593399760059246 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0062593399760059246 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4966e+05 | 100000 | 1 | 6.682e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.05088927019843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06650574129671767, dt = 0.0034942587032823352 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.0%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 331.43 us (93.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.732401329718309e-06,-1.164054494454761e-05,-1.3276330456378814e-06)
sum a = (-3.1974546040048364e-05,-0.0002221099566004983,-1.845651374005954e-05)
sum e = 0.050018514091891626
sum de = 0.00033587126129710245
Info: CFL hydro = 0.006150597896900757 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006150597896900757 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.3893e+05 | 100000 | 1 | 7.198e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.476065186104552 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 17 [SPH][rank=0]
Info: time since start : 150.975723689 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000007.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 787.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 773.04 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 764.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 783.08 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.043414438 s
Info: compute_slice took 1396.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1347.94 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.019177063 s
Info: compute_slice took 1370.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1345.47 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 1359.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1356.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000007.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000007.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000007.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.07, dt = 0.006150597896900757 ----------------
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.91 us (2.3%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1151.00 ns (0.3%)
LB compute : 370.02 us (93.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (72.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9218155287963e-06,-1.301647032069662e-05,-1.4410239480710725e-06)
sum a = (-2.384990703809816e-05,-0.00023180874393069348,-1.8319341267952484e-05)
sum e = 0.050027937178332045
sum de = 0.0003636223361480607
Info: CFL hydro = 0.006137699298270528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006137699298270528 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5168e+05 | 100000 | 1 | 6.593e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.586112818363006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07615059789690076, dt = 0.0038494021030992392 ----------------
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 (2.0%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.3%)
LB compute : 319.04 us (85.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (73.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.988637717328557e-06,-1.3938622057574662e-05,-1.5111206125160966e-06)
sum a = (-1.823620638711315e-05,-0.00023772626008310098,-1.8228024419874972e-05)
sum e = 0.05002284898367843
sum de = 0.00038251101122193076
Info: CFL hydro = 0.0060569495503934746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0060569495503934746 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.3645e+05 | 100000 | 1 | 7.329e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.908948275658524 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 19 [SPH][rank=0]
Info: time since start : 170.504017107 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
- took 5.24 ms, bandwidth = 1018.44 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (57.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
- took 6.43 ms, bandwidth = 1.85 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000008.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 780.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 777.86 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 758.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 779.74 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.043828359000000004 s
Info: compute_slice took 1391.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1357.47 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.025811272000000003 s
Info: compute_slice took 1355.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1358.30 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 1357.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1362.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000008.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000008.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000008.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.08, dt = 0.0060569495503934746 ----------------
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.93 us (2.3%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1161.00 ns (0.3%)
LB compute : 364.84 us (93.5%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0882888038597796e-06,-1.5389907471263733e-05,-1.6213510791970975e-06)
sum a = (-8.583539522879098e-06,-0.00024673456166993883,-1.8075917710186993e-05)
sum e = 0.05003146186788357
sum de = 0.0004097499208548218
Info: CFL hydro = 0.005846817057144472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005846817057144472 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5142e+05 | 100000 | 1 | 6.604e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.01639945575529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08605694955039347, dt = 0.003943050449606522 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.99 us (2.0%)
patch tree reduce : 2.35 us (0.6%)
gen split merge : 1101.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.3%)
LB compute : 367.11 us (93.7%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1623.00 ns (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.092901275125321e-06,-1.6390075709719944e-05,-1.692164683317881e-06)
sum a = (-1.7693829708019166e-06,-0.0002523695274412979,-1.7971442101004864e-05)
sum e = 0.0500271185701222
sum de = 0.00042891782181672086
Info: CFL hydro = 0.005704360613177071 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005704360613177071 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5220e+05 | 100000 | 1 | 6.570e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.605191456738687 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 21 [SPH][rank=0]
Info: time since start : 189.96942353600002 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000009.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 773.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 785.31 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 767.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 786.28 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.043186914 s
Info: compute_slice took 1402.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1362.16 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.024583885000000003 s
Info: compute_slice took 1368.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1359.11 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 1364.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1362.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000009.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000009.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.09, dt = 0.005704360613177071 ----------------
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.74 us (2.3%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1913.00 ns (0.5%)
LB compute : 350.19 us (93.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.089560192133299e-06,-1.7840791979181643e-05,-1.7944742935019593e-06)
sum a = (8.817809983950294e-06,-0.0002601438465739563,-1.7812786670096016e-05)
sum e = 0.05003447232750725
sum de = 0.00045451873706723694
Info: CFL hydro = 0.005508626356485609 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005508626356485609 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5094e+05 | 100000 | 1 | 6.625e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.99696945444891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09570436061317707, dt = 0.004295639386822939 ----------------
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 (2.3%)
patch tree reduce : 2.44 us (0.7%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 313.02 us (93.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0214854770028885e-06,-1.898044989268825e-05,-1.8705390876155305e-06)
sum a = (1.7346844764957147e-05,-0.00026566966107524783,-1.7687538326064964e-05)
sum e = 0.05003247105388548
sum de = 0.0004748706738467715
Info: CFL hydro = 0.006151260775230455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006151260775230455 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4947e+05 | 100000 | 1 | 6.690e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.115131160985356 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 23 [SPH][rank=0]
Info: time since start : 209.491141448 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
- took 5.06 ms, bandwidth = 1.03 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 : 7.19 us (56.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
- took 4.43 ms, bandwidth = 2.69 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 753.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 763.19 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 724.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 755.14 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.045115707000000005 s
Info: compute_slice took 1367.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1343.30 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.019538627000000003 s
Info: compute_slice took 1314.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1297.41 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 1307.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1297.11 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.1, dt = 0.006151260775230455 ----------------
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.57 us (2.0%)
patch tree reduce : 2.29 us (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 409.52 us (94.2%)
LB move op cnt : 0
LB apply : 4.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1773.00 ns (68.1%)
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.9790707374711518e-06)
sum a = (3.0371139542560484e-05,-0.00027302371493688205,-1.7499677235958305e-05)
sum e = 0.05004099916696263
sum de = 0.0005019259161877091
Info: CFL hydro = 0.005907960953798204 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005907960953798204 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5200e+05 | 100000 | 1 | 6.579e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.65975676798094 (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 : 7.56 us (2.2%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 315.25 us (92.9%)
LB move op cnt : 0
LB apply : 4.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1613.00 ns (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.739513169498729e-06,-2.16999371437383e-05,-2.045844640392609e-06)
sum a = (3.8989849425614064e-05,-0.000277261146603149,-1.7377126786635864e-05)
sum e = 0.05003642070330896
sum de = 0.0005204156064907401
Info: CFL hydro = 0.005770151728232813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005770151728232813 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5246e+05 | 100000 | 1 | 6.559e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.123906365470873 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 25 [SPH][rank=0]
Info: time since start : 228.57770147600002 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000011.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 738.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 736.57 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 727.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 733.90 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.043427544000000005 s
Info: compute_slice took 1324.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1295.26 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.019527020000000003 s
Info: compute_slice took 1306.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1288.79 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 1311.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1285.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000011.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000011.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000011.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.11, dt = 0.005770151728232813 ----------------
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.17 us (2.2%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 346.60 us (93.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.497950239068484e-06,-2.3307930412729922e-05,-2.14587746619158e-06)
sum a = (5.2564525185548194e-05,-0.0002830329233355502,-1.718627901159181e-05)
sum e = 0.05004476883100966
sum de = 0.0005454582641240167
Info: CFL hydro = 0.005571011968887629 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005571011968887629 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4593e+05 | 100000 | 1 | 6.853e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.313628814531015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11577015172823281, dt = 0.0042298482717671865 ----------------
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.90 us (2.4%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.3%)
LB compute : 311.18 us (92.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1543.00 ns (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2364463036447017e-06,-2.4521768748076008e-05,-2.2180222084573684e-06)
sum a = (6.299237582954578e-05,-0.0002867909931990909,-1.7041045964013027e-05)
sum e = 0.05004273559420364
sum de = 0.0005650438414234773
Info: CFL hydro = 0.005437711935288785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005437711935288785 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5245e+05 | 100000 | 1 | 6.559e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.214893772122604 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 27 [SPH][rank=0]
Info: time since start : 247.48154054900002 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
- took 5.14 ms, bandwidth = 1.02 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 : 7.11 us (57.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
- took 7.14 ms, bandwidth = 1.67 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000012.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 738.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 737.83 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 721.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 740.61 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.043680241 s
Info: compute_slice took 1334.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1285.13 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.02672149 s
Info: compute_slice took 1326.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1290.02 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 1295.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1288.76 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.12, dt = 0.005437711935288785 ----------------
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.31 us (2.4%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.3%)
LB compute : 363.62 us (93.2%)
LB move op cnt : 0
LB apply : 4.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (74.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.871857796763021e-06,-2.6089203587403287e-05,-2.3103793506080314e-06)
sum a = (7.696179305396318e-05,-0.00029098576933767625,-1.6847820289060967e-05)
sum e = 0.050049212513248495
sum de = 0.0005884443317307027
Info: CFL hydro = 0.005273791022856359 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005273791022856359 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5049e+05 | 100000 | 1 | 6.645e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.45986125594713 (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.44 us (1.9%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 372.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (77.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.482755093487522e-06,-2.7428169481977056e-05,-2.3867186072497754e-06)
sum a = (8.914446347517194e-05,-0.00029392007152900367,-1.668014264530941e-05)
sum e = 0.050049453716077934
sum de = 0.0006087754738721249
Info: CFL hydro = 0.005146949656574842 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005146949656574842 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4395e+05 | 100000 | 1 | 6.947e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.64337431738885 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 29 [SPH][rank=0]
Info: time since start : 266.434288397 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000013.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 733.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 748.34 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 726.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 739.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.043645970000000006 s
Info: compute_slice took 1320.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1297.04 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.028192965 s
Info: compute_slice took 1315.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1284.44 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 1291.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1289.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000013.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000013.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000013.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.13, dt = 0.005146949656574842 ----------------
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.91 us (1.8%)
patch tree reduce : 2.27 us (0.5%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.3%)
LB compute : 405.14 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1793.00 ns (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9961426018779154e-06,-2.894765485912053e-05,-2.4721879648532643e-06)
sum a = (0.00010336191734229948,-0.0002965480957451639,-1.6484989761281116e-05)
sum e = 0.05005427583198843
sum de = 0.0006306425438658733
Info: CFL hydro = 0.00501105843493431 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00501105843493431 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.3228e+05 | 100000 | 1 | 7.560e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.510455360965945 (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 : 6.93 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 342.65 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1932.00 ns (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4579337537822902e-06,-3.0393580851195855e-05,-2.5516882290409016e-06)
sum a = (0.00011719360838864788,-0.00029832900898933104,-1.629527044853748e-05)
sum e = 0.050056556890539526
sum de = 0.0006513810775804908
Info: CFL hydro = 0.005092429851183968 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005092429851183968 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5179e+05 | 100000 | 1 | 6.588e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.519600848128174 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 285.42089015600004 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
- took 5.42 ms, bandwidth = 985.41 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (56.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
- took 6.19 ms, bandwidth = 1.93 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.13 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 730.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 730.22 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 733.39 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.043374461 s
Info: compute_slice took 1320.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1301.20 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.019398214 s
Info: compute_slice took 1297.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1275.98 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 1276.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1283.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000014.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.14, dt = 0.005092429851183968 ----------------
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.4%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 301.64 us (92.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.275705775650373e-07,-3.191712183284916e-05,-2.6342103920182113e-06)
sum a = (0.0001321135926054356,-0.0002994329199556476,-1.6090339765713008e-05)
sum e = 0.0500606212126735
sum de = 0.0006724990942802375
Info: CFL hydro = 0.0049242773572941555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049242773572941555 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5138e+05 | 100000 | 1 | 6.606e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.75121845431023 (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 : 8.00 us (2.6%)
patch tree reduce : 2.44 us (0.8%)
gen split merge : 1122.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 281.98 us (91.9%)
LB move op cnt : 0
LB apply : 4.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4122436773961551e-07,-3.338942068700079e-05,-2.712653065573415e-06)
sum a = (0.00014684587531765044,-0.0002997229795699729,-1.5887279676709684e-05)
sum e = 0.05006345310911218
sum de = 0.000692711091768812
Info: CFL hydro = 0.0047760077560672215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0047760077560672215 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5260e+05 | 100000 | 1 | 6.553e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.96042290561055 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 33 [SPH][rank=0]
Info: time since start : 304.26627865 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000015.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 732.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 732.94 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 715.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 731.87 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.043740333 s
Info: compute_slice took 1318.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1280.48 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.026139715 s
Info: compute_slice took 1303.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1290.22 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 1274.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1295.75 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000015.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000015.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.15, dt = 0.0047760077560672215 ----------------
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.61 us (2.1%)
patch tree reduce : 34.35 us (8.5%)
gen split merge : 1322.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.4%)
LB compute : 347.79 us (85.7%)
LB move op cnt : 0
LB apply : 4.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (77.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.962625271508131e-07,-3.482161170603904e-05,-2.788032570716587e-06)
sum a = (0.0001614776457707479,-0.00029924666532070383,-1.5684507346962982e-05)
sum e = 0.05006645310361426
sum de = 0.0007119969065953727
Info: CFL hydro = 0.005135257746052202 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005135257746052202 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5020e+05 | 100000 | 1 | 6.658e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.825604566794485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1547760077560672, dt = 0.005135257746052202 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.88 us (2.2%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 331.05 us (93.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4604325829965218e-06,-3.6357183021834515e-05,-2.868092337453297e-06)
sum a = (0.00017748855023776746,-0.0002978687490695785,-1.5460902571955205e-05)
sum e = 0.050071196942682146
sum de = 0.0007319718693946487
Info: CFL hydro = 0.005016333112992494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005016333112992494 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5144e+05 | 100000 | 1 | 6.603e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.996462975717428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1599112655021194, dt = 8.873449788060483e-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.96 us (2.2%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 290.36 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5172920009696902e-06,-3.63800762781646e-05,-2.8688901188033473e-06)
sum a = (0.00017776744869473881,-0.00029783695120925286,-1.5456988829719338e-05)
sum e = 0.05006367827043116
sum de = 0.0007335315266319285
Info: CFL hydro = 0.005016949852681959 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005016949852681959 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5560e+05 | 100000 | 1 | 6.427e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.49704305487804146 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 323.74168902900004 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
- took 5.09 ms, bandwidth = 1.03 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.32 us (54.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
- took 5.67 ms, bandwidth = 2.10 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000016.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 735.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 731.71 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 717.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 750.57 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.043249116000000004 s
Info: compute_slice took 1336.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1286.85 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.027277135 s
Info: compute_slice took 1321.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1278.13 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 1283.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1280.40 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000016.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.16, dt = 0.005016949852681959 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.12 us (2.0%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 387.05 us (93.9%)
LB move op cnt : 0
LB apply : 4.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.409154750475227e-06,-3.787430791587348e-05,-2.946436882993532e-06)
sum a = (0.0001936434658423043,-0.0002955810753124947,-1.5232950685922252e-05)
sum e = 0.05007465262607973
sum de = 0.0007515988894465158
Info: CFL hydro = 0.004907313632701585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004907313632701585 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4306e+05 | 100000 | 1 | 6.990e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.838970990556664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16501694985268195, dt = 0.004907313632701585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.1%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 326.23 us (93.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3992485612276844e-06,-3.93191581482048e-05,-3.020627755494574e-06)
sum a = (0.00020934333356122168,-0.00029249470141010634,-1.5008642194077034e-05)
sum e = 0.05007808621776377
sum de = 0.0007699597942062622
Info: CFL hydro = 0.004810065937145314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004810065937145314 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5108e+05 | 100000 | 1 | 6.619e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.690757677717905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16992426348538353, dt = 7.573651461648123e-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.59 us (2.2%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 326.86 us (93.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1612.00 ns (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.453625583121556e-06,-3.933373777506491e-05,-3.0212140816834824e-06)
sum a = (0.00020958669896827982,-0.00029244018711658274,-1.5005140906184559e-05)
sum e = 0.05007119980754233
sum de = 0.0007713872541006468
Info: CFL hydro = 0.004811335418087947 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004811335418087947 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5718e+05 | 100000 | 1 | 6.362e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4285592652225777 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 39 [SPH][rank=0]
Info: time since start : 343.30189458700005 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000017.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 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 744.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 734.53 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 720.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 736.37 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.042479994 s
Info: compute_slice took 1326.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1304.07 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.026485554 s
Info: compute_slice took 1306.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1288.36 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 1290.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1282.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000017.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000017.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.17, dt = 0.004811335418087947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.52 us (2.3%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 350.50 us (93.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.46202670684121e-06,-4.0740763540655594e-05,-3.093408714991157e-06)
sum a = (0.00022509729504564615,-0.00028853505868532773,-1.4780251740624427e-05)
sum e = 0.050081636316574224
sum de = 0.0007877223133348866
Info: CFL hydro = 0.004719912218402766 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004719912218402766 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5034e+05 | 100000 | 1 | 6.651e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.04045876987271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17481133541808797, dt = 0.004719912218402766 ----------------
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.55 us (2.4%)
patch tree reduce : 2.62 us (0.7%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 331.33 us (93.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1483.00 ns (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.561779520199988e-06,-4.20932292482212e-05,-3.162629197169093e-06)
sum a = (0.0002403777907610317,-0.00028385403472890394,-1.4554986285193219e-05)
sum e = 0.05008515463866576
sum de = 0.0008043427322295182
Info: CFL hydro = 0.005173905244929402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005173905244929402 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4343e+05 | 100000 | 1 | 6.972e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.37077938123376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17953124763649073, dt = 0.0004687523635092672 ----------------
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.31 us (2.4%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 278.78 us (92.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1452.00 ns (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.710518476972083e-06,-4.22152394868007e-05,-3.1689202648033837e-06)
sum a = (0.00024189706845827616,-0.00028334292872311036,-1.4532365957030453e-05)
sum e = 0.050079152057801946
sum de = 0.0008070784489291535
Info: CFL hydro = 0.005142752087051717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005142752087051717 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5449e+05 | 100000 | 1 | 6.473e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.607025147970621 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 42 [SPH][rank=0]
Info: time since start : 362.850062782 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
- took 5.38 ms, bandwidth = 992.56 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (56.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
- took 6.65 ms, bandwidth = 1.79 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 731.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 733.70 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 716.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 737.27 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.050534714 s
Info: compute_slice took 1328.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1283.17 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.026332691000000002 s
Info: compute_slice took 1302.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1279.50 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 1285.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1280.22 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000018.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000018.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.18, dt = 0.005142752087051717 ----------------
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.03 us (2.0%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 1001.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1161.00 ns (0.3%)
LB compute : 386.35 us (94.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.954891213137785e-06,-4.3672282133768874e-05,-3.2436513184925566e-06)
sum a = (0.00025856287211025716,-0.00027717302798597733,-1.4281238264514243e-05)
sum e = 0.050090944012096496
sum de = 0.0008230275407816314
Info: CFL hydro = 0.005043200134491954 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005043200134491954 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.3856e+05 | 100000 | 1 | 7.217e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.652234939252846 (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.19 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 330.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.253649232323949e-06,-4.500271511053858e-05,-3.312373089514782e-06)
sum a = (0.0002742603803891285,-0.00027039774137929933,-1.4039131784207754e-05)
sum e = 0.050094168446827105
sum de = 0.0008388952136858666
Info: CFL hydro = 0.0048476838136633366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0048476838136633366 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5083e+05 | 100000 | 1 | 6.630e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.375124834880786 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 381.76180425700005 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000019.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 736.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 734.43 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 717.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 732.12 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.043299459000000005 s
Info: compute_slice took 1325.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1324.53 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.02491697 s
Info: compute_slice took 1324.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1303.92 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 1288.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1280.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000019.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000019.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000019.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.19, dt = 0.0048476838136633366 ----------------
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.03 us (2.1%)
patch tree reduce : 2.40 us (0.6%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 359.57 us (93.6%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.621300183710086e-06,-4.629706324130534e-05,-3.379842375824881e-06)
sum a = (0.00028983031001927754,-0.0002627076732348044,-1.3792768134201398e-05)
sum e = 0.05009825933761422
sum de = 0.0008538910708955317
Info: CFL hydro = 0.004669157459238548 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004669157459238548 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5190e+05 | 100000 | 1 | 6.583e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.50936217216749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19484768381366335, dt = 0.004669157459238548 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.0%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 359.01 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1012302585586479e-05,-4.750504722393999e-05,-3.4436458355030324e-06)
sum a = (0.0003046841780360319,-0.0002544185397514021,-1.3551029826320492e-05)
sum e = 0.0501017988642515
sum de = 0.0008677789340885624
Info: CFL hydro = 0.004511432028407787 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004511432028407787 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5079e+05 | 100000 | 1 | 6.632e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.346708878239298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1995168412729019, dt = 0.00048315872709811525 ----------------
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.41 us (1.9%)
patch tree reduce : 2.44 us (0.6%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 357.53 us (94.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1194190929540963e-05,-4.7608620127051884e-05,-3.4496287767130723e-06)
sum a = (0.00030621126741007724,-0.0002535115524591935,-1.3525767818542015e-05)
sum e = 0.05009594029760934
sum de = 0.0008703555122625414
Info: CFL hydro = 0.004496297613966689 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004496297613966689 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5513e+05 | 100000 | 1 | 6.446e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.69823920299923 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 47 [SPH][rank=0]
Info: time since start : 401.33973073000004 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
- took 5.10 ms, bandwidth = 1.02 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 : 7.03 us (54.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
- took 6.46 ms, bandwidth = 1.85 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.10 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 732.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 726.40 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 722.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 729.65 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.042679326000000004 s
Info: compute_slice took 1322.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1284.46 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.019419968000000003 s
Info: compute_slice took 1292.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1280.48 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 1290.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1277.06 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.2, dt = 0.004496297613966689 ----------------
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.14 us (2.2%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1081.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.3%)
LB compute : 343.10 us (93.5%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2571376833834835e-05,-4.874826440607549e-05,-3.5104385515029e-06)
sum a = (0.000320313916537774,-0.00024462171279028517,-1.3288436738466847e-05)
sum e = 0.05010570787059534
sum de = 0.0008818602691166818
Info: CFL hydro = 0.004357288421367525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004357288421367525 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5222e+05 | 100000 | 1 | 6.569e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.639197221640813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2044962976139667, dt = 0.004357288421367525 ----------------
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 (2.2%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1111.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 330.88 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3998781807378732e-05,-4.97941660803738e-05,-3.567806547456962e-06)
sum a = (0.0003337642654783149,-0.0002352382347852257,-1.3054604999891196e-05)
sum e = 0.05010922875603592
sum de = 0.0008934792408447896
Info: CFL hydro = 0.004233190257589435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004233190257589435 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5087e+05 | 100000 | 1 | 6.628e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.665408667379445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20885358603533422, dt = 0.0011464139646657767 ----------------
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.73 us (2.1%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 382.00 us (93.8%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4410717347076172e-05,-5.004340321773053e-05,-3.5822630927685002e-06)
sum a = (0.000337262556054123,-0.00023264464743545985,-1.2992458612783863e-05)
sum e = 0.05010509468097933
sum de = 0.0008974493879301536
Info: CFL hydro = 0.004202940046141573 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004202940046141573 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5406e+05 | 100000 | 1 | 6.491e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.358114699231081 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 50 [SPH][rank=0]
Info: time since start : 420.80549932300005 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000021.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 729.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 730.86 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 715.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 743.72 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.043540093 s
Info: compute_slice took 1336.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1318.17 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.019792725 s
Info: compute_slice took 1300.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1305.01 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 1288.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1304.80 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000021.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000021.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000021.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.21, dt = 0.004202940046141573 ----------------
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.30 us (2.1%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.3%)
LB compute : 379.72 us (94.0%)
LB move op cnt : 0
LB apply : 4.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1802.00 ns (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5830216894576768e-05,-5.1019708060588765e-05,-3.636833994626986e-06)
sum a = (0.0003499238201064204,-0.0002226884810998169,-1.2762376163712354e-05)
sum e = 0.0501136725008774
sum de = 0.0009068971619041173
Info: CFL hydro = 0.004093276672937803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004093276672937803 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4858e+05 | 100000 | 1 | 6.730e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.481478805113934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21420294004614157, dt = 0.004093276672937803 ----------------
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 (2.5%)
patch tree reduce : 2.52 us (0.8%)
gen split merge : 1171.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.4%)
LB compute : 285.09 us (92.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7289159171581904e-05,-5.191031104049882e-05,-3.6885904198996187e-06)
sum a = (0.00036198034741678797,-0.0002123233180899388,-1.2534921052971176e-05)
sum e = 0.050117148179771684
sum de = 0.0009164128455061182
Info: CFL hydro = 0.003994674318308248 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003994674318308248 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5090e+05 | 100000 | 1 | 6.627e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.236170757456055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21829621671907937, dt = 0.0017037832809206344 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.3%)
patch tree reduce : 2.45 us (0.7%)
gen split merge : 1242.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 309.23 us (92.8%)
LB move op cnt : 0
LB apply : 4.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (56.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7930570586532395e-05,-5.2250850220027936e-05,-3.70948169046786e-06)
sum a = (0.00036691073579651673,-0.00020781664283600957,-1.2439266136636504e-05)
sum e = 0.05011465510411001
sum de = 0.0009210325225283877
Info: CFL hydro = 0.003956650367431532 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003956650367431532 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5340e+05 | 100000 | 1 | 6.519e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.409055327015256 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 440.39153000700003 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.vtk [VTK Dump][rank=0]
- took 5.06 ms, bandwidth = 1.03 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 : 7.53 us (57.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham [Shamrock Dump][rank=0]
- took 6.50 ms, bandwidth = 1.83 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000022.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 727.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 724.80 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 711.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 729.06 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.043152847 s
Info: compute_slice took 1323.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1292.27 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.025468862000000002 s
Info: compute_slice took 1306.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1301.65 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 1288.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1287.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.22, dt = 0.003956650367431532 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.36 us (2.2%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 347.96 us (93.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9386508240779612e-05,-5.306926881729585e-05,-3.758618029774368e-06)
sum a = (0.00037814103763662534,-0.00019691536991535676,-1.2214892683112059e-05)
sum e = 0.05012206172095334
sum de = 0.0009285878161788066
Info: CFL hydro = 0.0038693305935104563 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0038693305935104563 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5126e+05 | 100000 | 1 | 6.611e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.54495803999814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22395665036743154, dt = 0.0038693305935104563 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.1%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 329.45 us (93.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1662.00 ns (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0871878115317792e-05,-5.3809633219688055e-05,-3.8054376040759023e-06)
sum a = (0.00038880272356144437,-0.00018567473958403175,-1.1992454784186438e-05)
sum e = 0.05012547756402879
sum de = 0.0009361293170785302
Info: CFL hydro = 0.004212355106469723 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004212355106469723 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4990e+05 | 100000 | 1 | 6.671e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.879970153801594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.227825980960942, dt = 0.002174019039058006 ----------------
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 (1.8%)
patch tree reduce : 2.27 us (0.5%)
gen split merge : 1041.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 401.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1402.00 ns (60.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1737769432540457e-05,-5.419154678120624e-05,-3.831079086218047e-06)
sum a = (0.0003946429433110699,-0.00017911160420230153,-1.186616975441693e-05)
sum e = 0.05012450632993427
sum de = 0.0009407527240664419
Info: CFL hydro = 0.00416769957024285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00416769957024285 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4811e+05 | 100000 | 1 | 6.752e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.591825035346355 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 56 [SPH][rank=0]
Info: time since start : 459.940840299 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000023.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 736.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 731.06 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 712.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 729.30 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.043592395000000006 s
Info: compute_slice took 1331.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1293.67 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.019210556 s
Info: compute_slice took 1305.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1295.18 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 1297.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1295.94 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000023.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000023.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000023.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.23, dt = 0.00416769957024285 ----------------
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.90 us (2.1%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 354.29 us (93.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3388871032247598e-05,-5.493089594641179e-05,-3.880396443774428e-06)
sum a = (0.0004055124831486763,-0.00016603659389930755,-1.1621428815481517e-05)
sum e = 0.05013217139812865
sum de = 0.000946952069462212
Info: CFL hydro = 0.00464919369941949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00464919369941949 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5173e+05 | 100000 | 1 | 6.591e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.765288230730015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23416769957024286, dt = 0.00464919369941949 ----------------
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.99 us (2.4%)
patch tree reduce : 2.51 us (0.9%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 272.30 us (92.1%)
LB move op cnt : 0
LB apply : 4.63 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5296827602193302e-05,-5.5675585875233566e-05,-3.933916714048602e-06)
sum a = (0.0004170938405517565,-0.00015070389971651025,-1.1344311889995159e-05)
sum e = 0.05013785580768591
sum de = 0.0009534738890650968
Info: CFL hydro = 0.004577089617043287 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004577089617043287 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4985e+05 | 100000 | 1 | 6.673e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.080996549023837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23881689326966235, dt = 0.0011831067303376408 ----------------
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.26 us (2.2%)
patch tree reduce : 2.49 us (0.8%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.4%)
LB compute : 299.41 us (92.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1363.00 ns (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5817216119070235e-05,-5.581824234068482e-05,-3.946694060664714e-06)
sum a = (0.0004199440772981399,-0.0001466799282920755,-1.127310568791824e-05)
sum e = 0.05013301456562146
sum de = 0.0009563823352991121
Info: CFL hydro = 0.004545040241142427 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004545040241142427 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5206e+05 | 100000 | 1 | 6.577e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.476303908485331 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 59 [SPH][rank=0]
Info: time since start : 479.488459196 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.vtk [VTK Dump][rank=0]
- took 5.17 ms, bandwidth = 1.01 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 : 7.47 us (56.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham [Shamrock Dump][rank=0]
- took 6.32 ms, bandwidth = 1.89 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000024.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 743.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 735.43 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 739.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 732.28 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.041827688 s
Info: compute_slice took 1318.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1292.00 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.017971641 s
Info: compute_slice took 1297.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1303.83 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 1320.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1300.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000024.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000024.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000024.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.24, dt = 0.004545040241142427 ----------------
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.15 us (2.2%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1121.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.3%)
LB compute : 352.78 us (93.6%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7727564916550856e-05,-5.6482528123504116e-05,-3.997888657390486e-06)
sum a = (0.00043050243824674025,-0.00013076564597151426,-1.0996932201629123e-05)
sum e = 0.05014307535326662
sum de = 0.0009606764404632036
Info: CFL hydro = 0.00441388685208918 sink sink = inf [SPH][rank=0]
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 | 1.5109e+05 | 100000 | 1 | 6.619e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.721363290210356 (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.77 us (2.2%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 325.55 us (93.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9651748056219746e-05,-5.702354736218574e-05,-4.045800262044217e-06)
sum a = (0.00044013128259300826,-0.0001146421571718843,-1.0724749356315427e-05)
sum e = 0.050146992318079925
sum de = 0.0009651755901250646
Info: CFL hydro = 0.004297504684344064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004297504684344064 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5106e+05 | 100000 | 1 | 6.620e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.003396918070646 (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 : 7.35 us (2.1%)
patch tree reduce : 2.75 us (0.8%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 318.09 us (93.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0131207124685004e-05,-5.71073145783768e-05,-4.0563648158898155e-06)
sum a = (0.00044230841377212716,-0.00011074673730171857,-1.0659980958012593e-05)
sum e = 0.05014254039861528
sum de = 0.0009672978704012974
Info: CFL hydro = 0.004387064790422875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004387064790422875 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5401e+05 | 100000 | 1 | 6.493e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.772218225902044 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 499.100737039 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000025.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 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 728.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 737.77 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 718.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 736.86 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.044608623 s
Info: compute_slice took 1344.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1304.67 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.027294659000000002 s
Info: compute_slice took 1319.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1301.25 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 1303.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1303.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000025.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000025.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000025.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.25, dt = 0.004387064790422875 ----------------
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 (2.2%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 360.87 us (93.4%)
LB move op cnt : 0
LB apply : 4.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.207277606938801e-05,-5.759113998219553e-05,-4.1030971287049604e-06)
sum a = (0.00045106710265476076,-9.395088423685688e-05,-1.0384618278462794e-05)
sum e = 0.050152190898899815
sum de = 0.0009694117394654395
Info: CFL hydro = 0.004240579186829454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004240579186829454 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5170e+05 | 100000 | 1 | 6.592e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.958632714322817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2543870647904229, dt = 0.004240579186829454 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.99 us (2.3%)
patch tree reduce : 2.40 us (0.7%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 324.00 us (93.1%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.400477430457143e-05,-5.795270389869008e-05,-4.146529907881754e-06)
sum a = (0.00045886974577706905,-7.715649869328646e-05,-1.0114719842064974e-05)
sum e = 0.05015594433844542
sum de = 0.0009717582293978418
Info: CFL hydro = 0.004333057068551769 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004333057068551769 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5204e+05 | 100000 | 1 | 6.577e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.21104787143088 (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 : 8.16 us (2.4%)
patch tree reduce : 2.54 us (0.7%)
gen split merge : 1081.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 315.29 us (92.6%)
LB move op cnt : 0
LB apply : 4.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.465105082686395e-05,-5.80229811234609e-05,-4.159838641729427e-06)
sum a = (0.00046124983067212977,-7.160917630336515e-05,-1.0026588205135256e-05)
sum e = 0.05015248401284188
sum de = 0.0009733987852564446
Info: CFL hydro = 0.004289261863250694 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004289261863250694 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5418e+05 | 100000 | 1 | 6.486e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.617051288647297 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 518.717374936 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.vtk [VTK Dump][rank=0]
- took 5.11 ms, bandwidth = 1.02 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 : 7.55 us (57.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham [Shamrock Dump][rank=0]
- took 6.48 ms, bandwidth = 1.84 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000026.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 734.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 736.04 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 717.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 743.16 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.043161559 s
Info: compute_slice took 1326.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1297.04 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.021439276 s
Info: compute_slice took 1304.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1292.76 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 1291.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1349.74 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000026.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.11 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000026.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000026.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.26, dt = 0.004289261863250694 ----------------
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.92 us (2.4%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 300.57 us (92.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1553.00 ns (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.663110529690509e-05,-5.832632518178579e-05,-4.20278483014488e-06)
sum a = (0.0004682105759046633,-5.392837022873316e-05,-9.748619118051685e-06)
sum e = 0.05016159289658722
sum de = 0.0009734013613327904
Info: CFL hydro = 0.004367638209032268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004367638209032268 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5148e+05 | 100000 | 1 | 6.602e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.390128252103157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2642892618632507, dt = 0.004367638209032268 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.74 us (2.4%)
patch tree reduce : 2.59 us (0.8%)
gen split merge : 1222.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 295.05 us (92.4%)
LB move op cnt : 0
LB apply : 4.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (72.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.869100792762933e-05,-5.8523945988548775e-05,-4.244767130387985e-06)
sum a = (0.0004745295633231878,-3.5421300349001636e-05,-9.461649122196395e-06)
sum e = 0.05016606150391677
sum de = 0.0009734465028109999
Info: CFL hydro = 0.0043264646012714176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0043264646012714176 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5168e+05 | 100000 | 1 | 6.593e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.849748349608706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26865690007228293, dt = 0.001343099927717084 ----------------
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 (2.2%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1181.00 ns (0.3%)
LB compute : 327.40 us (93.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1663.00 ns (58.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9342148075283924e-05,-5.853110424171394e-05,-4.256848380080719e-06)
sum a = (0.00047631212543044766,-2.9634548996316934e-05,-9.37260753422314e-06)
sum e = 0.05016220265260252
sum de = 0.0009744818507956298
Info: CFL hydro = 0.004269512681353469 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004269512681353469 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5431e+05 | 100000 | 1 | 6.481e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.461073547279994 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 538.3467169 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.13 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000027.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 738.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 759.37 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 714.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 754.27 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.041825136000000006 s
Info: compute_slice took 1320.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1300.80 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.01377423 s
Info: compute_slice took 1297.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1302.04 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 1290.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1300.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000027.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000027.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.27, dt = 0.004269512681353469 ----------------
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 (2.6%)
patch tree reduce : 2.49 us (0.8%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 294.45 us (92.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1462.00 ns (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.137696581460807e-05,-5.8653743231797554e-05,-4.296805050930241e-06)
sum a = (0.0004814574285822219,-1.0954295867144407e-05,-9.087033486861719e-06)
sum e = 0.0501712871008542
sum de = 0.0009722471510297802
Info: CFL hydro = 0.004180340324513952 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004180340324513952 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5134e+05 | 100000 | 1 | 6.608e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.26136824884951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27426951268135347, dt = 0.004180340324513952 ----------------
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 (2.0%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 348.63 us (93.7%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.340060568637648e-05,-5.865965812773354e-05,-4.334182312437239e-06)
sum a = (0.000485708203713706,7.724096638098002e-06,-8.80371094085358e-06)
sum e = 0.050175134454829226
sum de = 0.0009702219711411151
Info: CFL hydro = 0.0043201295189520894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0043201295189520894 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4544e+05 | 100000 | 1 | 6.876e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.88763596030566 (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 : 7.19 us (2.1%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 304.04 us (90.8%)
LB move op cnt : 0
LB apply : 7.65 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1552.00 ns (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4162409641735465e-05,-5.860864362385546e-05,-4.347237166157447e-06)
sum a = (0.00048708195383375096,1.4739799475530378e-05,-8.697718972393556e-06)
sum e = 0.050172110227989515
sum de = 0.0009702831337476709
Info: CFL hydro = 0.0042762570761757995 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0042762570761757995 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5382e+05 | 100000 | 1 | 6.501e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.584103592117929 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 557.989884234 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.vtk [VTK Dump][rank=0]
- took 5.08 ms, bandwidth = 1.03 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 : 7.15 us (56.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham [Shamrock Dump][rank=0]
- took 5.90 ms, bandwidth = 2.02 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000028.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 752.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 733.56 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 731.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 737.73 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.043262480000000006 s
Info: compute_slice took 1349.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1284.52 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.02663308 s
Info: compute_slice took 1325.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1317.25 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 1290.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1309.08 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000028.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.13 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000028.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.28, dt = 0.0042762570761757995 ----------------
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.28 us (2.2%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 357.62 us (93.5%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.62463620508036e-05,-5.854017476671765e-05,-4.3843486968940985e-06)
sum a = (0.0004902856541440319,3.432671775750839e-05,-8.402679682138839e-06)
sum e = 0.05018103774216464
sum de = 0.00096574693191466
Info: CFL hydro = 0.004287605816626476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004287605816626476 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5104e+05 | 100000 | 1 | 6.621e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.25130160362997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2842762570761758, dt = 0.004287605816626476 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 44.80 us (11.5%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 328.78 us (84.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8355363596378124e-05,-5.835111598302873e-05,-4.419745243248132e-06)
sum a = (0.0004926179813498857,5.427211394561559e-05,-8.102975158699875e-06)
sum e = 0.050185212360599966
sum de = 0.0009612261461412268
Info: CFL hydro = 0.004361087533887615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004361087533887615 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5158e+05 | 100000 | 1 | 6.597e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.396820799089856 (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 : 7.53 us (2.2%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 319.15 us (93.0%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.906783060891835e-05,-5.823041478795055e-05,-4.430739719123256e-06)
sum a = (0.0004931990484008,6.1012988450012193e-05,-8.001725956519543e-06)
sum e = 0.05018166637139935
sum de = 0.0009606519605794375
Info: CFL hydro = 0.004317892195660552 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004317892195660552 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.4640e+05 | 100000 | 1 | 6.831e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.5690965313689915 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 74 [SPH][rank=0]
Info: time since start : 577.723504527 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000029.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 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 747.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 746.29 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 726.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 751.89 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.043616718000000006 s
Info: compute_slice took 1347.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1312.46 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.024817444 s
Info: compute_slice took 1310.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1301.38 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 1283.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1299.81 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000029.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.13 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000029.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000029.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.29, dt = 0.004317892195660552 ----------------
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.18 us (2.2%)
patch tree reduce : 2.35 us (0.6%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 340.10 us (93.3%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1822.00 ns (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.119782817689192e-05,-5.796212687127654e-05,-4.465217605314558e-06)
sum a = (0.0004943253466268619,8.144226241350152e-05,-7.694662565529508e-06)
sum e = 0.05019082018890335
sum de = 0.0009536105242311409
Info: CFL hydro = 0.004185840485295168 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004185840485295168 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5119e+05 | 100000 | 1 | 6.614e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.500934842503074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2943178921956605, dt = 0.004185840485295168 ----------------
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 (2.5%)
patch tree reduce : 2.45 us (0.8%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 272.65 us (91.9%)
LB move op cnt : 0
LB apply : 4.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.3269426842862855e-05,-5.757711685075188e-05,-4.4967633020922766e-06)
sum a = (0.0004945174680794623,0.00010144022703441905,-7.393227503128052e-06)
sum e = 0.05019447178219466
sum de = 0.000946945568977895
Info: CFL hydro = 0.004121367042013501 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004121367042013501 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5070e+05 | 100000 | 1 | 6.636e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.708603939370793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2985037326809557, dt = 0.0014962673190442866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.73 us (2.5%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 282.83 us (92.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.4009759263940224e-05,-5.738348100923899e-05,-4.507194667243519e-06)
sum a = (0.0004943690449864953,0.00010862558426083742,-7.284584317866769e-06)
sum e = 0.050191254148521956
sum de = 0.0009453884940235502
Info: CFL hydro = 0.00408422274559097 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00408422274559097 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.5325e+05 | 100000 | 1 | 6.525e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.254655882825828 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 77 [SPH][rank=0]
Info: time since start : 597.412150125 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.vtk [VTK Dump][rank=0]
- took 5.25 ms, bandwidth = 1016.95 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (55.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.sham [Shamrock Dump][rank=0]
- took 6.37 ms, bandwidth = 1.87 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000030.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.13 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 736.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 750.71 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_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 729.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 748.30 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.043927699 s
Info: compute_slice took 1366.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1292.49 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.019466200000000003 s
Info: compute_slice took 1330.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1301.79 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 1314.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1307.69 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000030.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.12 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000030.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000030.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
Plot generation#
Load the on-the-fly analysis after the run to make the plots (everything in this section can be in another file)
527 import matplotlib
528 import matplotlib.pyplot as plt
529
530 face_on_render_kwargs = {
531 "x_unit": "au",
532 "y_unit": "au",
533 "time_unit": "year",
534 "x_label": "x",
535 "y_label": "y",
536 }
537
538 column_density_plot.render_all(
539 **face_on_render_kwargs,
540 field_unit="kg.m^-2",
541 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
542 vmin=1,
543 vmax=1e4,
544 norm="log",
545 )
546
547 column_density_plot_hollywood.render_all(
548 **face_on_render_kwargs,
549 field_unit="kg.m^-2",
550 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
551 vmin=1,
552 vmax=1e4,
553 norm="log",
554 holywood_mode=True,
555 )
556
557 vertical_density_plot.render_all(
558 **face_on_render_kwargs,
559 field_unit="kg.m^-3",
560 field_label="$\\rho$",
561 vmin=1e-10,
562 vmax=1e-6,
563 norm="log",
564 )
565
566 v_z_slice_plot.render_all(
567 **face_on_render_kwargs,
568 field_unit="m.s^-1",
569 field_label="$\\mathrm{v}_z$",
570 cmap="seismic",
571 cmap_bad_color="white",
572 vmin=-300,
573 vmax=300,
574 )
575
576 relative_azy_velocity_slice_plot.render_all(
577 **face_on_render_kwargs,
578 field_unit="m.s^-1",
579 field_label="$\\mathrm{v}_{\\theta} - v_k$",
580 cmap="seismic",
581 cmap_bad_color="white",
582 vmin=-300,
583 vmax=300,
584 )
585
586 vertical_shear_gradient_slice_plot.render_all(
587 **face_on_render_kwargs,
588 field_unit="yr^-1",
589 field_label="${{\\partial R \\Omega}}/{{\\partial z}}$",
590 cmap="seismic",
591 cmap_bad_color="white",
592 vmin=-1,
593 vmax=1,
594 )
595
596 dt_part_slice_plot.render_all(
597 **face_on_render_kwargs,
598 field_unit="year",
599 field_label="$\\Delta t$",
600 vmin=1e-4,
601 vmax=1,
602 norm="log",
603 contour_list=[1e-4, 1e-3, 1e-2, 1e-1, 1],
604 )
605
606 column_particle_count_plot.render_all(
607 **face_on_render_kwargs,
608 field_unit=None,
609 field_label="$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
610 vmin=1,
611 vmax=1e2,
612 norm="log",
613 contour_list=[1, 10, 100, 1000],
614 )
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_normal_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_integ_hollywood_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_rho_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_v_z_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_relative_azy_velocity_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_dt_part_slice_0000030.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000000.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000001.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000002.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000003.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000004.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000005.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000006.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000007.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000008.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000009.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000010.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000011.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000012.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000013.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000014.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000015.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000016.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000017.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000018.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000019.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000020.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000021.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000022.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000023.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000024.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000025.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000026.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000027.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000028.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000029.png
Saving plot to _to_trash/circular_disc_central_pot_100000/analysis/plots/plot_particle_count_0000030.png
Make gif for the doc (plot_to_gif.py)#
Convert PNG sequence to Image sequence in mpl
623 render_gif = True
Do it for rho integ
628 if render_gif:
629 ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
630 if ani is not None:
631 plt.show()
Same but in hollywood
636 if render_gif:
637 ani = column_density_plot_hollywood.render_gif(
638 gif_filename="rho_integ_hollywood.gif", save_animation=True
639 )
640 if ani is not None:
641 plt.show()
For the vertical density plot
645 if render_gif and shamrock.sys.world_rank() == 0:
646 ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
647 if ani is not None:
648 plt.show()
Make a gif from the plots
653 if render_gif and shamrock.sys.world_rank() == 0:
654 ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
655 if ani is not None:
656 plt.show()
Make a gif from the plots
661 if render_gif and shamrock.sys.world_rank() == 0:
662 ani = relative_azy_velocity_slice_plot.render_gif(
663 gif_filename="relative_azy_velocity_slice.gif", save_animation=True
664 )
665 if ani is not None:
666 plt.show()
Make a gif from the plots
670 if render_gif and shamrock.sys.world_rank() == 0:
671 ani = vertical_shear_gradient_slice_plot.render_gif(
672 gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
673 )
674 if ani is not None:
675 plt.show()
Make a gif from the plots
679 if render_gif and shamrock.sys.world_rank() == 0:
680 ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
681 if ani is not None:
682 plt.show()
Make a gif from the plots
686 if render_gif and shamrock.sys.world_rank() == 0:
687 ani = column_particle_count_plot.render_gif(
688 gif_filename="particle_count.gif", save_animation=True
689 )
690 if ani is not None:
691 plt.show()
helper function to load data from JSON files
696 def load_data_from_json(filename, key):
697 filepath = os.path.join(analysis_folder, filename)
698 with open(filepath, "r") as fp:
699 data = json.load(fp)[key]
700 t = [d["t"] for d in data]
701 values = [d[key] for d in data]
702 return t, values
load the json file for barycenter
707 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
708 barycenter_x = [d[0] for d in barycenter]
709 barycenter_y = [d[1] for d in barycenter]
710 barycenter_z = [d[2] for d in barycenter]
711
712 plt.figure(figsize=(8, 5), dpi=200)
713
714 plt.plot(t, barycenter_x)
715 plt.plot(t, barycenter_y)
716 plt.plot(t, barycenter_z)
717 plt.xlabel("t")
718 plt.ylabel("barycenter")
719 plt.legend(["x", "y", "z"])
720 plt.savefig(analysis_folder + "barycenter.png")
721 plt.show()

load the json file for disc_mass
725 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
726
727 plt.figure(figsize=(8, 5), dpi=200)
728
729 plt.plot(t, disc_mass)
730 plt.xlabel("t")
731 plt.ylabel("disc_mass")
732 plt.savefig(analysis_folder + "disc_mass.png")
733 plt.show()

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

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

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







