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 lenght but with a neighbor count limit
230 # Use it if you have large slowdowns due to giant particles
231 # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
232 # cfg.set_smoothing_length_density_based_neigh_lim(500)
233
234 cfg.set_save_dt_to_fields(True)
235
236 # Set the solver config to be the one stored in cfg
237 model.set_solver_config(cfg)
238
239 # Print the solver config
240 model.get_current_config().print_status()
241
242 # Init the scheduler & fields
243 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
244
245 # Set the simulation box size
246 model.resize_simulation_box(bmin, bmax)
247
248 # Create the setup
249
250 setup = model.get_setup()
251 gen_disc = setup.make_generator_disc_mc(
252 part_mass=pmass,
253 disc_mass=disc_mass,
254 r_in=rin,
255 r_out=rout,
256 sigma_profile=sigma_profile,
257 H_profile=H_profile,
258 rot_profile=rot_profile,
259 cs_profile=cs_profile,
260 random_seed=666,
261 )
262
263 # Print the dot graph of the setup
264 print(gen_disc.get_dot())
265
266 # Apply the setup
267 setup.apply_setup(gen_disc)
268
269 # correct the momentum and barycenter of the disc to 0
270 analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
271 total_momentum = analysis_momentum.get_total_momentum()
272
273 if shamrock.sys.world_rank() == 0:
274 print(f"disc momentum = {total_momentum}")
275
276 model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
277
278 # Correct the barycenter
279 analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
280 barycenter, disc_mass = analysis_barycenter.get_barycenter()
281
282 if shamrock.sys.world_rank() == 0:
283 print(f"disc barycenter = {barycenter}")
284
285 model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
286
287 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
288
289 if shamrock.sys.world_rank() == 0:
290 print(f"disc momentum after correction = {total_momentum}")
291
292 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
293
294 if shamrock.sys.world_rank() == 0:
295 print(f"disc barycenter after correction = {barycenter}")
296
297 if not np.allclose(total_momentum, 0.0):
298 raise RuntimeError("disc momentum is not 0")
299 if not np.allclose(barycenter, 0.0):
300 raise RuntimeError("disc barycenter is not 0")
301
302 # Run a single step to init the integrator and smoothing length of the particles
303 # Here the htolerance is the maximum factor of evolution of the smoothing length in each
304 # Smoothing length iterations, increasing it affect the performance negatively but increse the
305 # convergence rate of the smoothing length
306 # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
307 # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
308 # more slowly at the first timestep
309
310 model.change_htolerances(coarse=1.3, fine=1.1)
311 model.timestep()
312 model.change_htolerances(coarse=1.1, fine=1.1)
313
314
315 dump_helper.load_last_dump_or(setup_model)
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"alpha_AV": 0.0125,
"alpha_u": 1.0,
"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 ) rate = 2.662676e+05 N.s^-1
SPH setup: the generation step took : 0.379632002 s
SPH setup: final particle count = 100000 begining injection ...
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.23 us (86.4%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (0.2%)
patch tree reduce : 1372.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.1%)
LB compute : 926.84 us (98.6%)
LB move op cnt : 0
LB apply : 4.56 us (0.5%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.1%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1283.00 ns (0.3%)
patch tree reduce : 481.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.1%)
LB compute : 417.11 us (98.4%)
LB move op cnt : 0
LB apply : 1673.00 ns (0.4%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (63.1%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1162.00 ns (0.4%)
patch tree reduce : 341.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 309.58 us (98.1%)
LB move op cnt : 0
LB apply : 1282.00 ns (0.4%)
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 100000 / 100000 => 100.0% | ranks with patchs = 1 / 1 <- global loop ->
SPH setup: the injection step took : 0.011080969000000001 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.4% 0.0% | 2.00 GB | 2.00 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.43351909400000005 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.83 us (2.7%)
patch tree reduce : 2.44 us (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 438.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.3%)
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.3351e+04 | 100000 | 1 | 4.282e+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.860580820000001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
- took 29.06 ms, bandwidth = 183.77 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (32.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
- took 6.66 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.01 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 1999.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000000.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 721.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 713.36 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 680.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 715.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/v_z_slice_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.056988412 s
Info: compute_slice took 1264.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.11 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.022114188 s
Info: compute_slice took 1236.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.49 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 1210.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000000.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1997.24 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000000.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000000.json
Warning: step count is 0, skipping save of perf history
---------------- t = 0, dt = 7.833195568092581e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (0.8%)
patch tree reduce : 1714.00 ns (0.2%)
gen split merge : 1172.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.2%)
LB compute : 802.97 us (97.3%)
LB move op cnt : 0
LB apply : 4.11 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (69.3%)
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.3550e+05 | 100000 | 1 | 7.380e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3821042537398938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833195568092581e-05, dt = 0.002663297962155027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.1%)
patch tree reduce : 2.13 us (0.3%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 590.01 us (96.5%)
LB move op cnt : 0
LB apply : 3.93 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.2%)
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.3811e+05 | 100000 | 1 | 7.241e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.241505500778667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.002741629917835953, dt = 0.004305100970696 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (0.2%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 1001.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.0%)
LB compute : 3.53 ms (98.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (68.0%)
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.3847e+05 | 100000 | 1 | 7.222e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.45985748034759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007046730888531953, dt = 0.002953269111468047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (0.2%)
patch tree reduce : 1904.00 ns (0.1%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 3.66 ms (99.4%)
LB move op cnt : 0
LB apply : 4.11 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.7%)
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.4164e+05 | 100000 | 1 | 7.060e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.058825810800874 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 5 [SPH][rank=0]
Info: time since start : 34.604914225 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1996.76 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000001.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1992.42 ms [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 703.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.52 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 694.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.55 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.050316033 s
Info: compute_slice took 1251.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1216.28 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.028303259 s
Info: compute_slice took 1228.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1201.40 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 1208.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1209.95 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.03 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (0.1%)
patch tree reduce : 2.17 us (0.0%)
gen split merge : 1183.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.0%)
LB compute : 9.12 ms (99.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.3%)
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.3653e+05 | 100000 | 1 | 7.325e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.01035013857339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015902529477645276, dt = 0.004097470522354724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (0.1%)
patch tree reduce : 2.17 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 8.07 ms (99.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.4%)
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.4140e+05 | 100000 | 1 | 7.072e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.857544596040405 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 7 [SPH][rank=0]
Info: time since start : 52.891366016000006 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
- took 5.63 ms, bandwidth = 949.32 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (58.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
- took 5.52 ms, bandwidth = 2.16 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1999.94 ms [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 1997.57 ms [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 701.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 689.05 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 676.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.17 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.049989945 s
Info: compute_slice took 1245.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1195.96 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.020867748000000002 s
Info: compute_slice took 1223.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1211.80 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 1212.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1214.47 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000002.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000002.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.02, dt = 0.007165314836586345 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (0.1%)
patch tree reduce : 2.05 us (0.0%)
gen split merge : 1011.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 9.05 ms (99.8%)
LB move op cnt : 0
LB apply : 3.91 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.4%)
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.3383e+05 | 100000 | 1 | 7.472e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.52076215537611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.027165314836586345, dt = 0.002834685163413654 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.3%)
patch tree reduce : 1763.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 501.35 us (96.0%)
LB move op cnt : 0
LB apply : 4.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
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.4023e+05 | 100000 | 1 | 7.131e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.310315251825239 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 9 [SPH][rank=0]
Info: time since start : 71.085864832 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000003.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000003.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 704.71 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 667.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 709.27 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.048976650000000004 s
Info: compute_slice took 1254.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.75 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.022495634 s
Info: compute_slice took 1222.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.76 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 1209.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1223.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000003.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000003.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.03, dt = 0.00737105938371397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (0.1%)
patch tree reduce : 1693.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.0%)
LB compute : 9.18 ms (99.8%)
LB move op cnt : 0
LB apply : 4.11 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-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.4042e+05 | 100000 | 1 | 7.121e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.26194877923642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03737105938371397, dt = 0.0026289406162860324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.7%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 393.23 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.7%)
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.3578e+05 | 100000 | 1 | 7.365e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.850238090823645 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 11 [SPH][rank=0]
Info: time since start : 89.33410314400001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
- took 5.36 ms, bandwidth = 997.18 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 : 6.95 us (58.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
- took 6.20 ms, bandwidth = 1.92 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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 1998.92 ms [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 705.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 713.70 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 675.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 708.02 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.04910018 s
Info: compute_slice took 1244.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1218.82 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.021256090000000002 s
Info: compute_slice took 1250.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1218.36 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 1215.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.62 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000004.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000004.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.04, dt = 0.007424416986969308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (1.6%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 422.35 us (95.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.2%)
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.3538e+05 | 100000 | 1 | 7.387e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.1843875388251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04742441698696931, dt = 0.002575583013030694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (0.1%)
patch tree reduce : 2.05 us (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 8.92 ms (99.8%)
LB move op cnt : 0
LB apply : 3.91 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.4%)
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.3728e+05 | 100000 | 1 | 7.284e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.72913991863456 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 13 [SPH][rank=0]
Info: time since start : 107.602680917 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000005.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 706.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 714.00 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 682.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 703.72 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.048574945 s
Info: compute_slice took 1272.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.25 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.024403866000000003 s
Info: compute_slice took 1237.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.33 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 1222.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.64 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000005.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000005.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.05, dt = 0.0069331249406501564 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (0.1%)
patch tree reduce : 1724.00 ns (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.0%)
LB compute : 9.30 ms (99.8%)
LB move op cnt : 0
LB apply : 4.77 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.1%)
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.3769e+05 | 100000 | 1 | 7.263e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.36582795945374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05693312494065016, dt = 0.003066875059349841 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (0.1%)
patch tree reduce : 1804.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 7.56 ms (99.7%)
LB move op cnt : 0
LB apply : 4.15 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.9%)
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.3900e+05 | 100000 | 1 | 7.194e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.346179791386126 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 15 [SPH][rank=0]
Info: time since start : 125.96867214800001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
- took 6.22 ms, bandwidth = 858.20 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (58.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
- took 6.40 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.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000006.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000006.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 701.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 710.80 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 674.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 703.02 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.050439521 s
Info: compute_slice took 1257.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1217.48 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.023852579000000002 s
Info: compute_slice took 1248.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.51 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 1210.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/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.00 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (0.3%)
patch tree reduce : 1714.00 ns (0.1%)
gen split merge : 1001.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 2.36 ms (99.1%)
LB move op cnt : 0
LB apply : 4.26 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.2%)
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.3650e+05 | 100000 | 1 | 7.326e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.969910195623928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06650574129671767, dt = 0.0034942587032823352 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (0.2%)
patch tree reduce : 1833.00 ns (0.1%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 3.14 ms (99.3%)
LB move op cnt : 0
LB apply : 3.66 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.5%)
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.3944e+05 | 100000 | 1 | 7.171e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.540870646672357 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 17 [SPH][rank=0]
Info: time since start : 144.273028758 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.00 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 715.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.59 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 675.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.56 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.049178511 s
Info: compute_slice took 1292.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.69 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.025632052000000002 s
Info: compute_slice took 1268.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1219.42 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 1227.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.53 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_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.04 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (0.1%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 9.01 ms (99.7%)
LB move op cnt : 0
LB apply : 4.37 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (73.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.3653e+05 | 100000 | 1 | 7.324e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.231201425184107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07615059789690076, dt = 0.0038494021030992392 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (0.3%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 1002.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 1941.44 us (98.9%)
LB move op cnt : 0
LB apply : 3.72 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.6%)
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.3731e+05 | 100000 | 1 | 7.283e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.027940018551693 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 19 [SPH][rank=0]
Info: time since start : 162.689174255 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
- took 5.38 ms, bandwidth = 992.51 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (54.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
- took 4.53 ms, bandwidth = 2.63 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.00 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 708.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 685.87 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 665.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 693.47 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.050498781000000006 s
Info: compute_slice took 1289.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.79 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.021138663000000002 s
Info: compute_slice took 1231.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.17 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 1235.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.53 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 1999.81 ms [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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (0.6%)
patch tree reduce : 1993.00 ns (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.1%)
LB compute : 1192.03 us (98.2%)
LB move op cnt : 0
LB apply : 4.00 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.0%)
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.3846e+05 | 100000 | 1 | 7.222e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.191115291336462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08605694955039347, dt = 0.003943050449606522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (0.1%)
patch tree reduce : 2.08 us (0.0%)
gen split merge : 1303.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 8.65 ms (99.8%)
LB move op cnt : 0
LB apply : 3.96 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.2%)
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.3830e+05 | 100000 | 1 | 7.231e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.63098091845091 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 21 [SPH][rank=0]
Info: time since start : 181.01313315800002 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000009.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 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 708.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 721.12 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 686.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 724.01 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.0481293 s
Info: compute_slice took 1291.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1268.21 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.021177149000000003 s
Info: compute_slice took 1254.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1256.51 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 1247.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1252.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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (0.1%)
patch tree reduce : 1833.00 ns (0.0%)
gen split merge : 1052.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 9.29 ms (99.8%)
LB move op cnt : 0
LB apply : 4.27 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (70.9%)
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.3792e+05 | 100000 | 1 | 7.250e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.32365701620756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09570436061317707, dt = 0.004295639386822939 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (0.1%)
patch tree reduce : 2.15 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 7.81 ms (99.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.0%)
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.3839e+05 | 100000 | 1 | 7.226e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.401429027294956 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 23 [SPH][rank=0]
Info: time since start : 199.51772880200002 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
- took 5.46 ms, bandwidth = 978.80 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (55.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
- took 4.48 ms, bandwidth = 2.66 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000010.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000010.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.35 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 667.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 716.75 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.047765047000000005 s
Info: compute_slice took 1296.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.38 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.020203869000000003 s
Info: compute_slice took 1254.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.14 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 1226.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1248.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000010.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000010.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.1, dt = 0.006151260775230455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (0.1%)
patch tree reduce : 1884.00 ns (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 9.01 ms (99.8%)
LB move op cnt : 0
LB apply : 4.40 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.6%)
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.3793e+05 | 100000 | 1 | 7.250e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.544140289990793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10615126077523046, dt = 0.00384873922476954 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (0.1%)
patch tree reduce : 1834.00 ns (0.0%)
gen split merge : 1172.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 8.93 ms (99.8%)
LB move op cnt : 0
LB apply : 4.01 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-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.3804e+05 | 100000 | 1 | 7.244e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.126648922186597 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 25 [SPH][rank=0]
Info: time since start : 217.927653404 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.00 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.06 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 702.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.25 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 696.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.62 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.048909346000000006 s
Info: compute_slice took 1282.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.60 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.024289645000000002 s
Info: compute_slice took 1261.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.99 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 1231.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.23 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (1.6%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 412.50 us (94.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.8%)
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.3807e+05 | 100000 | 1 | 7.242e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.681552538999053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11577015172823281, dt = 0.0042298482717671865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (0.2%)
patch tree reduce : 1754.00 ns (0.1%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 2.61 ms (99.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.5%)
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.3355e+05 | 100000 | 1 | 7.488e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.336859383545047 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 27 [SPH][rank=0]
Info: time since start : 236.416132091 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
- took 5.63 ms, bandwidth = 948.84 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (58.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
- took 6.09 ms, bandwidth = 1.96 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.04 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.01 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 711.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.19 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 684.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 707.57 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.046841272 s
Info: compute_slice took 1278.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.25 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.022586433000000003 s
Info: compute_slice took 1249.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1243.07 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 1235.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000012.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000012.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.12, dt = 0.005437711935288785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.99 us (0.1%)
patch tree reduce : 2.20 us (0.0%)
gen split merge : 1052.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.0%)
LB compute : 8.99 ms (99.7%)
LB move op cnt : 0
LB apply : 4.16 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.7%)
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.3274e+05 | 100000 | 1 | 7.533e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.985812619265918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12543771193528877, dt = 0.004562288064711234 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.5%)
patch tree reduce : 1953.00 ns (0.4%)
gen split merge : 1033.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 416.28 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.1%)
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.3896e+05 | 100000 | 1 | 7.196e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.82345744448713 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 29 [SPH][rank=0]
Info: time since start : 254.89882824000003 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.00 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 701.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.98 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 669.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 716.51 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.048466937 s
Info: compute_slice took 1266.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1215.88 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.026963733 s
Info: compute_slice took 1234.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.76 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 1220.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.39 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.02 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (0.1%)
patch tree reduce : 1673.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.0%)
LB compute : 9.08 ms (99.8%)
LB move op cnt : 0
LB apply : 4.10 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (69.6%)
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.3521e+05 | 100000 | 1 | 7.396e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.053244396216844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13514694965657484, dt = 0.004853050343425175 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (0.1%)
patch tree reduce : 1923.00 ns (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 8.96 ms (99.7%)
LB move op cnt : 0
LB apply : 4.18 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (78.0%)
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.3183e+05 | 100000 | 1 | 7.586e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.031218828016467 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 273.274170217 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
- took 5.70 ms, bandwidth = 937.06 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (59.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
- took 6.73 ms, bandwidth = 1.77 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000014.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 702.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 709.89 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 670.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.47 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.050790774000000004 s
Info: compute_slice took 1281.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.12 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.020526702 s
Info: compute_slice took 1228.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.96 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 1202.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.94 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000014.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000014.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.14, dt = 0.005092429851183968 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.6%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 412.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.6%)
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.3838e+05 | 100000 | 1 | 7.227e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.36818539152884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14509242985118398, dt = 0.004907570148816015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.0%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 322.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.6%)
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.3378e+05 | 100000 | 1 | 7.475e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.635928023196474 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 33 [SPH][rank=0]
Info: time since start : 291.610057803 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000015.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000015.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000015.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 699.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.30 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 665.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 708.67 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.049130956 s
Info: compute_slice took 1265.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.40 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.022181962000000003 s
Info: compute_slice took 1232.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.74 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 1211.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.13 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (1.2%)
patch tree reduce : 2.04 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 620.31 us (96.5%)
LB move op cnt : 0
LB apply : 4.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.4%)
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.3656e+05 | 100000 | 1 | 7.323e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.479358697844763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1547760077560672, dt = 0.005135257746052202 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (0.1%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 1011.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 8.95 ms (99.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.2%)
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.3042e+05 | 100000 | 1 | 7.667e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.111158141419963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1599112655021194, dt = 8.873449788060483e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (0.9%)
patch tree reduce : 2.35 us (0.3%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 746.97 us (97.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.5%)
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.3781e+05 | 100000 | 1 | 7.256e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.440237455336123 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 310.696869423 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
- took 5.22 ms, bandwidth = 1023.24 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (59.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
- took 7.15 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.01 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.01 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 700.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 701.90 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 663.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.61 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.048195810000000006 s
Info: compute_slice took 1254.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.82 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.027931284 s
Info: compute_slice took 1240.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1217.52 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 1234.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000016.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (1.3%)
patch tree reduce : 1703.00 ns (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 553.86 us (96.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.64 us (94.8%)
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.3730e+05 | 100000 | 1 | 7.283e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.797949610438167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16501694985268195, dt = 0.004907313632701585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (0.2%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 3.43 ms (99.4%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.8%)
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.3530e+05 | 100000 | 1 | 7.391e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.90255689210043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16992426348538353, dt = 7.573651461648123e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.8%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 362.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.0%)
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.4107e+05 | 100000 | 1 | 7.089e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3846215963495318 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 39 [SPH][rank=0]
Info: time since start : 329.69213255600005 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000017.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 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 707.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 707.63 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 673.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 716.29 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.048416312 s
Info: compute_slice took 1279.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.02 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.027895437000000002 s
Info: compute_slice took 1280.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1244.39 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 1226.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.58 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (1.8%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 417.51 us (94.9%)
LB move op cnt : 0
LB apply : 4.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.2%)
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.3880e+05 | 100000 | 1 | 7.204e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.041838734704218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17481133541808797, dt = 0.004719912218402766 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (0.2%)
patch tree reduce : 1804.00 ns (0.1%)
gen split merge : 1192.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.0%)
LB compute : 3.55 ms (99.4%)
LB move op cnt : 0
LB apply : 4.17 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.2%)
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.3912e+05 | 100000 | 1 | 7.188e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.638009660780416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17953124763649073, dt = 0.0004687523635092672 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 318.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.4%)
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.3742e+05 | 100000 | 1 | 7.277e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3190419671512457 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 42 [SPH][rank=0]
Info: time since start : 348.880686271 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
- took 5.24 ms, bandwidth = 1019.12 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 : 5.97 us (54.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
- took 6.59 ms, bandwidth = 1.81 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000018.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000018.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 704.31 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 677.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.70 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.049183647000000004 s
Info: compute_slice took 1254.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1219.07 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.027856474000000003 s
Info: compute_slice took 1232.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1206.44 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 1223.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.82 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.3%)
patch tree reduce : 2.13 us (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 542.51 us (96.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.7%)
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 = (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.3720e+05 | 100000 | 1 | 7.289e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.400441613436342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18514275208705172, dt = 0.0048572479129482815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.9%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 364.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.7%)
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.3322e+05 | 100000 | 1 | 7.506e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.294830443411676 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 367.18466750000005 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 695.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.34 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 668.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.78 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.04787711 s
Info: compute_slice took 1245.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.64 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.021610874000000002 s
Info: compute_slice took 1227.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.35 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 1228.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1211.87 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (0.1%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 1252.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.0%)
LB compute : 9.03 ms (99.7%)
LB move op cnt : 0
LB apply : 5.65 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.0%)
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.3238e+05 | 100000 | 1 | 7.554e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.1024574081693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19484768381366335, dt = 0.004669157459238548 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (0.3%)
patch tree reduce : 1704.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 2.61 ms (99.0%)
LB move op cnt : 0
LB apply : 8.48 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.6%)
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.3446e+05 | 100000 | 1 | 7.437e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.601200416754068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1995168412729019, dt = 0.00048315872709811525 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (0.1%)
patch tree reduce : 1853.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 7.74 ms (99.7%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (55.0%)
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.3956e+05 | 100000 | 1 | 7.165e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.427461664903148 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 47 [SPH][rank=0]
Info: time since start : 386.182736976 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
- took 6.09 ms, bandwidth = 877.05 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (56.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
- took 6.52 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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_0000020.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_hollywood_0000020.json
Info: compute_slice field_name: rho, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 700.72 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 674.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 696.99 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.048651142 s
Info: compute_slice took 1261.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.02 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.028711871000000003 s
Info: compute_slice took 1246.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.02 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 1229.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1276.54 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000020.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000020.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.2, dt = 0.004496297613966689 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (0.1%)
patch tree reduce : 2.10 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.0%)
LB compute : 8.99 ms (99.7%)
LB move op cnt : 0
LB apply : 4.15 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.0%)
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.3168e+05 | 100000 | 1 | 7.594e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.3138636718356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2044962976139667, dt = 0.004357288421367525 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (0.1%)
patch tree reduce : 1773.00 ns (0.0%)
gen split merge : 981.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 6.94 ms (99.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.3%)
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.3478e+05 | 100000 | 1 | 7.420e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.14160546347054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20885358603533422, dt = 0.0011464139646657767 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (0.1%)
patch tree reduce : 2.02 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 9.02 ms (99.8%)
LB move op cnt : 0
LB apply : 4.36 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.3%)
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.3752e+05 | 100000 | 1 | 7.272e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.67538997168618 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 50 [SPH][rank=0]
Info: time since start : 405.43632979600005 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 732.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 709.37 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 662.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 709.68 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.048596854 s
Info: compute_slice took 1283.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.41 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.022592106 s
Info: compute_slice took 1244.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.53 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 1224.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1242.51 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.2%)
patch tree reduce : 1884.00 ns (0.1%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.0%)
LB compute : 3.18 ms (99.3%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (73.5%)
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.3665e+05 | 100000 | 1 | 7.318e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.67659251206702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21420294004614157, dt = 0.004093276672937803 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (0.1%)
patch tree reduce : 2.05 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 8.97 ms (99.8%)
LB move op cnt : 0
LB apply : 4.18 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.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.3412e+05 | 100000 | 1 | 7.456e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.763796617712394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21829621671907937, dt = 0.0017037832809206344 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (0.1%)
patch tree reduce : 1884.00 ns (0.0%)
gen split merge : 1022.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 6.79 ms (99.7%)
LB move op cnt : 0
LB apply : 4.20 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.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.3735e+05 | 100000 | 1 | 7.281e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.424433377222924 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 424.608004047 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.vtk [VTK Dump][rank=0]
- took 5.70 ms, bandwidth = 937.14 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (58.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000011.sham [Shamrock Dump][rank=0]
- took 5.61 ms, bandwidth = 2.13 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 691.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.88 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 649.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 681.16 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.048922161000000006 s
Info: compute_slice took 1239.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.39 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.024578665000000003 s
Info: compute_slice took 1215.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.29 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 1197.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1195.60 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/dt_part_slice_0000022.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/particle_count_0000022.json
Saving perf history to _to_trash/circular_disc_central_pot_100000/analysis/perf_history.json
---------------- t = 0.22, dt = 0.003956650367431532 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (0.1%)
patch tree reduce : 2.09 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.0%)
LB compute : 9.02 ms (99.7%)
LB move op cnt : 0
LB apply : 4.40 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.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.3422e+05 | 100000 | 1 | 7.450e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.118863189260043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22395665036743154, dt = 0.0038693305935104563 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (0.1%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 901.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.0%)
LB compute : 8.94 ms (99.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.9%)
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.3628e+05 | 100000 | 1 | 7.338e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.98316115665698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.227825980960942, dt = 0.002174019039058006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (0.1%)
patch tree reduce : 1964.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 8.99 ms (99.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.3%)
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.3389e+05 | 100000 | 1 | 7.469e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.478985782158066 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 56 [SPH][rank=0]
Info: time since start : 443.50486012100004 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.00 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 682.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.73 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 668.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 695.91 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.04817988 s
Info: compute_slice took 1240.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1199.48 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.023731986 s
Info: compute_slice took 1218.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.77 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 1209.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1201.95 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (1.8%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 379.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.9%)
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.2924e+05 | 100000 | 1 | 7.737e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.391202889432186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23416769957024286, dt = 0.00464919369941949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (0.1%)
patch tree reduce : 1854.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.0%)
LB compute : 8.25 ms (99.5%)
LB move op cnt : 0
LB apply : 4.03 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.5%)
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.3330e+05 | 100000 | 1 | 7.502e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.310027369793847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23881689326966235, dt = 0.0011831067303376408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (0.2%)
patch tree reduce : 2.13 us (0.1%)
gen split merge : 1443.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.0%)
LB compute : 3.18 ms (99.3%)
LB move op cnt : 0
LB apply : 4.15 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.4%)
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.3766e+05 | 100000 | 1 | 7.264e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.863353002238251 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 59 [SPH][rank=0]
Info: time since start : 462.388591754 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.vtk [VTK Dump][rank=0]
- took 6.00 ms, bandwidth = 889.57 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (56.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000012.sham [Shamrock Dump][rank=0]
- took 12.72 ms, bandwidth = 960.21 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 678.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.82 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 643.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.71 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.052830859 s
Info: compute_slice took 1265.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1195.03 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.02307143 s
Info: compute_slice took 1198.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1183.55 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 1181.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1189.46 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (0.8%)
patch tree reduce : 2.16 us (0.2%)
gen split merge : 1031.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 935.88 us (97.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.2%)
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.3246e+05 | 100000 | 1 | 7.549e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.67390156622441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24454504024114243, dt = 0.00441388685208918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (0.9%)
patch tree reduce : 2.07 us (0.3%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 743.27 us (97.3%)
LB move op cnt : 0
LB apply : 3.98 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.2%)
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.3470e+05 | 100000 | 1 | 7.424e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.403500519638637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2489589270932316, dt = 0.0010410729067683866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (0.1%)
patch tree reduce : 2.04 us (0.0%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.0%)
LB compute : 7.94 ms (99.7%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.0%)
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.3747e+05 | 100000 | 1 | 7.274e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.1522578223913875 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 481.206297821 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 676.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 680.89 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 644.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 676.41 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.053054478 s
Info: compute_slice took 1236.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1188.23 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.025094608 s
Info: compute_slice took 1209.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.76 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 1186.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1185.98 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.1%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 347.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.7%)
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.3835e+05 | 100000 | 1 | 7.228e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.84974937832728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2543870647904229, dt = 0.004240579186829454 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (0.1%)
patch tree reduce : 1923.00 ns (0.0%)
gen split merge : 1193.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 6.84 ms (99.7%)
LB move op cnt : 0
LB apply : 3.93 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.7%)
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.3327e+05 | 100000 | 1 | 7.503e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.345597830078564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25862764397725235, dt = 0.0013723560227476561 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (1.9%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 344.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
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.3642e+05 | 100000 | 1 | 7.330e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.739848411538864 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 500.00161526600004 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.vtk [VTK Dump][rank=0]
- took 5.26 ms, bandwidth = 1015.17 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (57.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000013.sham [Shamrock Dump][rank=0]
- took 17.50 ms, bandwidth = 697.83 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.02 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 677.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 682.87 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 645.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 677.01 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.055723649 s
Info: compute_slice took 1240.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1183.78 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.027334605 s
Info: compute_slice took 1210.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1194.08 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 1189.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1189.69 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.02 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.2%)
patch tree reduce : 2.00 us (0.3%)
gen split merge : 1182.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 548.97 us (94.6%)
LB move op cnt : 0
LB apply : 8.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
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.3827e+05 | 100000 | 1 | 7.232e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.35148626850588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2642892618632507, dt = 0.004367638209032268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (0.1%)
patch tree reduce : 1924.00 ns (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 8.94 ms (99.7%)
LB move op cnt : 0
LB apply : 4.18 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.6%)
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.3573e+05 | 100000 | 1 | 7.368e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.34141292670296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26865690007228293, dt = 0.001343099927717084 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (0.2%)
patch tree reduce : 1823.00 ns (0.1%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 3.15 ms (99.3%)
LB move op cnt : 0
LB apply : 4.42 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (72.0%)
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.3598e+05 | 100000 | 1 | 7.354e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.57488052287475 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 518.8146664550001 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 679.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 694.33 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 659.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 677.85 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.054426944000000005 s
Info: compute_slice took 1231.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1194.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/relative_azy_velocity_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 2073600 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.022978489 s
Info: compute_slice took 1204.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1186.36 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 1183.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1184.37 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (0.5%)
patch tree reduce : 1854.00 ns (0.1%)
gen split merge : 1042.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 1323.64 us (98.4%)
LB move op cnt : 0
LB apply : 4.18 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.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.3772e+05 | 100000 | 1 | 7.261e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.167374572564427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27426951268135347, dt = 0.004180340324513952 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (0.1%)
patch tree reduce : 2.09 us (0.0%)
gen split merge : 1273.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 8.70 ms (99.7%)
LB move op cnt : 0
LB apply : 4.32 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.2%)
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.3888e+05 | 100000 | 1 | 7.201e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.90004375562668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27844985300586744, dt = 0.001550146994132584 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (0.1%)
patch tree reduce : 1854.00 ns (0.0%)
gen split merge : 1022.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.0%)
LB compute : 8.92 ms (99.7%)
LB move op cnt : 0
LB apply : 4.15 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.7%)
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.3580e+05 | 100000 | 1 | 7.364e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.578231435880263 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 537.601734008 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.vtk [VTK Dump][rank=0]
- took 5.34 ms, bandwidth = 999.67 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (56.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000014.sham [Shamrock Dump][rank=0]
- took 5.51 ms, bandwidth = 2.16 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 675.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 683.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 641.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 687.22 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.047521338 s
Info: compute_slice took 1221.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1203.86 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.021536950000000003 s
Info: compute_slice took 1197.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1191.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_central_pot_100000/analysis/plots/vertical_shear_gradient_slice_0000028.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1192.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1181.37 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.01 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (0.1%)
patch tree reduce : 2.03 us (0.0%)
gen split merge : 1032.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 9.00 ms (99.8%)
LB move op cnt : 0
LB apply : 4.27 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.5%)
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.3276e+05 | 100000 | 1 | 7.532e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.437926554776432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2842762570761758, dt = 0.004287605816626476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (0.7%)
patch tree reduce : 1923.00 ns (0.2%)
gen split merge : 1232.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1019.76 us (97.9%)
LB move op cnt : 0
LB apply : 3.86 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.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.3903e+05 | 100000 | 1 | 7.192e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.4605456068083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2885638628928023, dt = 0.0014361371071976992 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (0.1%)
patch tree reduce : 1883.00 ns (0.0%)
gen split merge : 1222.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 8.94 ms (99.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.1%)
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.3579e+05 | 100000 | 1 | 7.364e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.020397039843175 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 74 [SPH][rank=0]
Info: time since start : 556.339510915 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_central_pot_100000/analysis/plots/rho_integ_normal_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.01 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 675.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.48 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 639.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 679.86 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.056223332 s
Info: compute_slice took 1224.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1176.24 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.022926723000000003 s
Info: compute_slice took 1192.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1185.61 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 1184.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1175.71 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.02 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.7%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 397.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
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.3799e+05 | 100000 | 1 | 7.247e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.449713917368445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2943178921956605, dt = 0.004185840485295168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.4%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 416.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.5%)
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.3767e+05 | 100000 | 1 | 7.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.74567243529183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2985037326809557, dt = 0.0014962673190442866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 100000 min = 100000 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (0.5%)
patch tree reduce : 2.18 us (0.1%)
gen split merge : 1012.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1616.12 us (98.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
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.3807e+05 | 100000 | 1 | 7.243e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.437375990797868 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 77 [SPH][rank=0]
Info: time since start : 575.0098659290001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.vtk [VTK Dump][rank=0]
- took 5.44 ms, bandwidth = 980.93 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump/dump_0000015.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (56.0%)
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.01 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.01 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 675.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 713.25 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 642.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 678.46 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.048805628000000004 s
Info: compute_slice took 1224.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1181.99 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.027510315 s
Info: compute_slice took 1199.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1177.18 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 1186.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1184.70 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.02 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: (15 minutes 44.428 seconds)
Estimated memory usage: 2369 MB







